ok here's how I managed to get my second hard drive to mount automatically in Hardy. My second drive was a linux partition.
This returned this info about my drive
So I made a directory as a mount point
And then did this
added this line *****EDIT***** I've changed it to show the UUID as per dibl's advice below.
Then I mounted all
Other guides then tell you to change ownership of stuff.. that's how I messed up my install.
I simply left it like that.. rebooted and I can get into my second hdd by entering /slimmy with no issues!!!
Kev
Code:
sudo fdisk -l
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 9729 78148161 83 Linux
/dev/sdb1 * 1 9729 78148161 83 Linux
Code:
sudo mkdir /slimmy
Code:
sudo nano /etc/fstab
Code:
UUID=2a3b71d4-7362-4b00-bc95-227d8aab516b /slimmy ext3 defaults 0 0
Code:
sudo mount -a
I simply left it like that.. rebooted and I can get into my second hdd by entering /slimmy with no issues!!!
Kev
Comment