Hi all,
How about this mini-mini How-To:
Connect the new drive with this info in mind:
IDE 1 Master=hda, Slave=hdb and IDE 2 Master=hdc, Slave=hdd
Enter the console as root user.
Type ‘fdisk /dev/hdc’ on the console. (in this case our new drive is at IDE2 Master)
Create a new partition with the n option, followed by option p followed by option 1
(create new partition and make it primary partition 1)
Review it by entering 'p' as in Print partition table.
Write (save) the partition information by option 'w'
Since you've created a first partition on you new drive it will be called 'hdc1'
Now you can create the filesystem by entering: mkfs /dev/hdc1
And then you can mount it like: mount ' /dev/hdc1 /mnt/share'
(example mountpoit)
To mount this drive automatically you have to edit /etc/fstab by adding the line:
/dev/hdc1 /mnt/share ext2 defaults 0 0
For now you have to mount it manually (until next reboot) like:
mount /dev/hdc1 /mnt/share (or at any mountpoint you like)
That's it.
Hope it helps,
Regards,
guestHH