# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' 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>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda6 during installation
UUID=2a998826-836d-42ef-8b9c-44677488502d / ext3 errors=remount-ro 0 1
# /home was on /dev/sda8 during installation
UUID=82951e79-b769-4ee7-8a28-6b0b652036b7 /home ext3 defaults 0 2
# swap was on /dev/sda7 during installation
UUID=3e601a36-7339-4860-8f9b-eeaf9b5ea6a9 none swap sw 0 0
# UUID=4698B02F98B01F7D /media/WinXp ntfs defaults 0 2
# UUID=304401CC804DEC7C /media/Source_Study ntfs defaults 0
2
结果就因为一个2导致挂载/失败。
解决办法:
进入恢复模式,此时 vi /etc/fstab不可以修改,因为文件只读。
解决办法: mount -o remount, rw / 再修改就可以了