使用新选项重新挂载 fstab 中的所有文件系统

使用新选项重新挂载 fstab 中的所有文件系统

mount -a命令忽略安装选项,这使得它在您更改时毫无用处。

如何像重新启动一样重新评估 fstab 中的所有挂载选项?

答案1

你有没有尝试过重新安装选项?

mount -o remount -a

应该使用更改后的安装选项重新安装系统表

答案2

手动方式,作为fish多线:

cat /etc/fstab | while read dev mnt type opt dump pass
    if not string match noauto (string split , $opt)
        mount -o remount,$opt $mnt
    end
end

这假设noauto未安装安装点。我的情况就是这样,因为我的备份磁盘通常是卸载的。

相关内容