Ubuntu Linux 16.04初始化后可以修改/etc/fstab吗?

Ubuntu Linux 16.04初始化后可以修改/etc/fstab吗?

我在 Lenovo Thinkstation 桌面上运行的 Ubuntu Linux 16.04 系统上初始化 /etc/fstab 后对其进行了修改。它搞乱了我的 Ubuntu Linux 16.04 系统,导致它无休止地进入紧急重启状态。

我想知道是什么导致了这个事故以及如何正确修复 /etc/fstab 以更改符号名称。

任何帮助是极大的赞赏。

[编辑 2016 年 5 月 24 日 2:00PM,作者:Frank] 紧急重启后,/etc/fstab 从我的下面发生了变化。

原文是这样写的:

Data1 /media/Data1 vfat defaults 0 1 

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb7 during installation
UUID=71f42e33-6984-4905-9932-17cd4adb7b41 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sdb5 during installation
UUID=0a3b409b-f7bf-4a22-a05f-0dc35e1bb111 none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

答案1

是的,Ubuntu Linux 16.04 初始化后修改 /etc/fstab 是可以的。

我缩小了问题的原因,将 /etc/fstab 修改为 sudo nano /etc/rc.local :

e.g. Add these lines before the exit line:
     sleep 30
     sudo mount -a
     exit
     exit 0

由于 USB 驱动器需要很长时间才能启动,因此此自动挂载可能会失败。

相关内容