I have a server with a raid 5 attached where I boot from and another SATA attached to the motherboard that I want mounted to /backup...
This is fdisk -l
and fstab
The problem is when I uncomment the line in fstab where I have /dev/sdb1 (my SATA HD). The system won't boot because it won't find the drive and can't fsck... When I go into maintenance mode and do fdisk -l, the drive is not there.
When I comment that line and boot, everthing is ok, fdisk -l show the drive and I can mount manually.
This is df when I mount manually
So I cannot mount that drive at boot time !!! anyone has a clue...
Thanks
This is fdisk -l
Code:
Disk /dev/sda: 319.9 GB, 319977160704 bytes
255 heads, 63 sectors/track, 38901 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 131 1052226 82 Linux swap
/dev/sda2 * 132 38899 311403960 83 Linux
Disk /dev/sdb: 300.0 GB, 300069052416 bytes
255 heads, 63 sectors/track, 36481 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 36474 292977373+ 83 Linux
and fstab
Code:
/dev/sda2 / reiserfs acl,user_xattr 1 1
/dev/sda1 swap swap pri=42 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
sysfs /sys sysfs noauto 0 0
/dev/cdrecorder /media/cdrecorder subfs fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs fs=floppyfss,procuid,nodev,nosuid,sync 0 0
#/dev/sdb1 /backup reiserfs acl,user_xattr 1 2
The problem is when I uncomment the line in fstab where I have /dev/sdb1 (my SATA HD). The system won't boot because it won't find the drive and can't fsck... When I go into maintenance mode and do fdisk -l, the drive is not there.
When I comment that line and boot, everthing is ok, fdisk -l show the drive and I can mount manually.
This is df when I mount manually
Code:
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 311394396 1479112 309915284 1% /
tmpfs 4152772 8 4152764 1% /dev/shm
/dev/sdb1 292968396 32840 292935556 1% /backup
So I cannot mount that drive at boot time !!! anyone has a clue...
Thanks