LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   The superblock could not be read error (https://www.linuxquestions.org/questions/linux-newbie-8/the-superblock-could-not-be-read-error-624011/)

Ohmen 02-26-2008 01:18 PM

The superblock could not be read error after partitioning USB hard drive
 
I have openSuse 10.3,I used partitioner to partition a USB drive.Now when I boot i receive an error that the superblock could not be read if I dont have the external hard drive connected.Any ideas how to get my system to boot w/o the USB drive connected?

rabbit2345 02-26-2008 08:56 PM

/etc/fstab!!
 
in your /etc/fstab file, you can add the option "noauto", (remove the quotes) to the 4th coloum on your device. Remember to just put a comma without a space

here's an example:

Code:

/dev/sda3            /                    ext3      acl,user_xattr        1 1
/dev/sda4            /home                ext3      acl,user_xattr        1 2
/dev/sdb1            /mnt/sdb1            auto      rw,user              0 0

let's say that /dev/sdb1 is my usb drive, so I would add noauto to the 4th coloum of the appropriate device like this:


Code:

/dev/sda3            /                    ext3      acl,user_xattr        1 1
/dev/sda4            /home                ext3      acl,user_xattr        1 2
/dev/sdb1            /mnt/sdb1            auto      rw,user,noauto        0 0

(I highlighted the change in bold) this tells the kernel not to attempt to mount it during startup, thus not producing the error message

You can find out which device your usb drive is by going to the YaST2 Partitioner and since you formatted it, should know which one it is.

Good luck,

rabbit2345


All times are GMT -5. The time now is 10:43 PM.