Fedora
如何在不重新啟動的情況下驗證 fstab?
我修改了
/etc/fstab
.我驗證了新設備,我可以使用
mount
命令安裝它們。我如何驗證對 的修改
/etc/fstab
?
您可以簡單地執行:
mount -a
-a 掛載 fstab 中提到的所有文件系統(給定類型的)。
此命令將掛載 fstab 中提到的所有(尚未掛載的)文件系統,並在引導期間用於系統腳本啟動。
mount 命令採用
--fake
or-f
簡稱。以下命令應該可以滿足您的需要:mount -fav
以下是
-f
選項的文件:
Causes everything to be done except for the actual system call; if it's not obvious, this ``fakes'' mounting the filesystem. This option is useful in conjunction with the -v flag to determine what the mount command is trying to do.
(注意這是 Linux - 在其他地方使用之前檢查:FreeBSD 使用
-f
‘force’ - 完全相反的意思。)