Re: feisty>gutsy: could not mount disks anymore
If you are going to do a new installation, which I agree should not be required but sometimes is the best way to go, I would offer this for consideration:
- put the root filesystem in a sdx0 partition, if you can, and set the "boot" flag on it
- using the Alternate Install CD, you can easily set the "/", "/home", and "swap" partitions, and the others will be automatically mounted on /media/sdxx mount points.
- the installation process will create a /etc/fstab file with the appropriate UUID and fs_passno values
You should come out with an /etc/fstab file that looks more like this (in form, if not content):
And then fsck should be happy with it.
If you are going to do a new installation, which I agree should not be required but sometimes is the best way to go, I would offer this for consideration:
- put the root filesystem in a sdx0 partition, if you can, and set the "boot" flag on it
- using the Alternate Install CD, you can easily set the "/", "/home", and "swap" partitions, and the others will be automatically mounted on /media/sdxx mount points.
- the installation process will create a /etc/fstab file with the appropriate UUID and fs_passno values
You should come out with an /etc/fstab file that looks more like this (in form, if not content):
Code:
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/sdb1 UUID=1991a076-aba8-4e5d-9db9-65be3b608f11 / xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 1 # /dev/sdb3 UUID=4fe0930c-b56d-455f-b8be-504a214c9b31 /home xfs nouser,atime,auto,rw,dev,exec,suid 0 2 # /dev/sda1 UUID=e731c3cf-e2ff-4692-8353-ede2a3dcb85e /media/sda1 xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdc2 UUID=a50bfecb-c48b-4f1e-bcf4-8597166eae6c /media/sdc2 reiserfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdc3 UUID=003245d2-a1dc-4c1c-bc52-32601bc65e46 /media/sdc3 reiserfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdc4 UUID=f98e6bb6-0ed4-45a8-b596-9ed76e2d2364 /media/sdc4 reiserfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdd1 UUID=92c0453f-2a35-40d5-8013-b8870ed66127 /media/sdd1 xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdd2 UUID=f4e36b39-af7d-475c-8990-b2093f558295 /media/sdd2 xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdd3 UUID=eba33247-0dbb-482c-9351-81505a953864 /media/sdd3 xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sde1 UUID=ae2cd406-8e2a-4581-b422-9337e6bb3bc7 /media/sde1 xfs nouser,defaults,atime,auto,rw,dev,exec,suid 0 2 # /dev/sdc1 UUID=b132702a-c995-42d6-be8e-5b1444bea405 none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,atime,noauto,rw,dev,exec,suid 0 0 /dev/fd0 /media/floppy0 auto user,atime,noauto,rw,dev,exec,suid 0 0
Comment