要同時(shí)卸載多個(gè)文件系統(tǒng),可以在 `umount` 命令后面列出需要卸載的文件系統(tǒng)的掛載點(diǎn)路徑。每個(gè)掛載點(diǎn)路徑之間用空格分隔。
例如,要同時(shí)卸載 `/mnt/fs1` 和 `/mnt/fs2` 兩個(gè)文件系統(tǒng),可以使用以下命令:
```
umount /mnt/fs1 /mnt/fs2
```
這樣就會(huì)同時(shí)卸載 `/mnt/fs1` 和 `/mnt/fs2` 兩個(gè)文件系統(tǒng),使它們不再掛載在系統(tǒng)中。請(qǐng)確保在執(zhí)行此操作之前,沒(méi)有任何應(yīng)用程序正在訪問(wèn)這些文件系統(tǒng),以避免數(shù)據(jù)丟失或損壞。