I have an external hard disk connected via usb, identified as sdb. The partition being used is sdb2. It is all set up in /etc/fstab and will mount happily if, after boot, I just type mount -a
The fstab entry is: /dev/sdb2 /media/drivex ext4 auto,user,exec,async 0 0
However, during boot up, the disk doesn't connect. If I use the safe mode to see all the system messages, a message flashes by saying something like 'mounting special device on /dev/sdb2 [failed]'. dmesg doesn't seem to offer any clues:
dmesg | grep sdb
[ 9.302685] sd 2:0:0:0: [sdb] 976773168 512-byte hardware sectors: (500 GB/465 GiB)
[ 9.303329] sd 2:0:0:0: [sdb] Write Protect is off
[ 9.303339] sd 2:0:0:0: [sdb] Mode Sense: 00 38 00 00
[ 9.303345] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 9.304193] sd 2:0:0:0: [sdb] 976773168 512-byte hardware sectors: (500 GB/465 GiB)
[ 9.304820] sd 2:0:0:0: [sdb] Write Protect is off
[ 9.304831] sd 2:0:0:0: [sdb] Mode Sense: 00 38 00 00
[ 9.304837] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 9.304850] sdb: sdb1 sdb2
[ 9.312580] sd 2:0:0:0: [sdb] Attached SCSI disk
[ 48.321225] EXT4 FS on sdb2, internal journal on sdb2:8
You can see where I manually mounted the disk at 48 seconds, but there's no sort of error message from the boot process. Anybody got any thoughts?
The fstab entry is: /dev/sdb2 /media/drivex ext4 auto,user,exec,async 0 0
However, during boot up, the disk doesn't connect. If I use the safe mode to see all the system messages, a message flashes by saying something like 'mounting special device on /dev/sdb2 [failed]'. dmesg doesn't seem to offer any clues:
dmesg | grep sdb
[ 9.302685] sd 2:0:0:0: [sdb] 976773168 512-byte hardware sectors: (500 GB/465 GiB)
[ 9.303329] sd 2:0:0:0: [sdb] Write Protect is off
[ 9.303339] sd 2:0:0:0: [sdb] Mode Sense: 00 38 00 00
[ 9.303345] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 9.304193] sd 2:0:0:0: [sdb] 976773168 512-byte hardware sectors: (500 GB/465 GiB)
[ 9.304820] sd 2:0:0:0: [sdb] Write Protect is off
[ 9.304831] sd 2:0:0:0: [sdb] Mode Sense: 00 38 00 00
[ 9.304837] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 9.304850] sdb: sdb1 sdb2
[ 9.312580] sd 2:0:0:0: [sdb] Attached SCSI disk
[ 48.321225] EXT4 FS on sdb2, internal journal on sdb2:8
You can see where I manually mounted the disk at 48 seconds, but there's no sort of error message from the boot process. Anybody got any thoughts?
Comment