I just upgraded my ubuntu from 9.10 to 10.04, then i got the "An error occurred while mounting 0... press s to skip or m for manual recovery " message every reboot.
It was a problem in /etc/fstab.
Here is my configuration before changed.
# /etc/fstab: static file system information.
#
# Use 'vol_id --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 defaults 0 0
# / was on /dev/sda2 during installation
UUID=be0326a3-2410-42ab-98c8-7bc7f91ec4bf / ext3 relatime,errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=6ecae76b-f49e-4190-8796-261efdbde72b /boot ext3 relatime 0 2
# swap was on /dev/sda3 during installation
UUID=e9779cbf-9771-46af-b68c-613703575f78 none swap sw 0 0
#"other"partition
UUID=9C78F3C678F39D68 /media/OTHER ntfs
default 0 0
#CD-ROM
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
# none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0
Then I modify this file two place(#sudo /etc/fstab):
1.use one line to descript ntfs disk:
UUID=9C78F3C678F39D68 /media/OTHER ntfs default 0
2.removing cd-rom(i've no cd-rom)
The configuration like this:
# /etc/fstab: static file system information.
#
# Use 'vol_id --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 defaults 0 0
# / was on /dev/sda2 during installation
UUID=be0326a3-2410-42ab-98c8-7bc7f91ec4bf / ext3 relatime,errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=6ecae76b-f49e-4190-8796-261efdbde72b /boot ext3 relatime 0 2
# swap was on /dev/sda3 during installation
UUID=e9779cbf-9771-46af-b68c-613703575f78 none swap sw 0 0
#"other"partition
UUID=9C78F3C678F39D68 /media/OTHER ntfs default 0 0
#CD-ROM
#/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
# none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0
Then reboot is ok, let's play ub~~
本文原创 非转载