Hi,
as adviced, managing disk devices under U*x can be really disruptive and you really have to care about waht you are doing.
Looking at some Linux beginner site is not a bad idea (apologize this comment is from my understanding of your questions,
not a final opinion of you)
In a short way :
- you can retrieve which devices are connected to you system from the "dmesg" output command
- you mostly should have your main (IDE) disk (ie the one hosting SME) recognized as /dev/hda and the new one as /dev/hdb
if so, you'll need to perform the following task (I
DO assume your new (IDE) disk is hdb)
- create a partition on the disk
fdisk /dev/hdb
(new, primary, default and default, write)
- create a filse system on it
/sbin/mkfs.ext3 /dev/hdb1
- choose where you would like this extra space to be accessible
for instance I can suggest using an ibay "data" (you have to create it)
- mount the new partition on this ibay and create the standard directories entries :
mount /dev/hdb1 /home/e-smith/files/ibays/data
mkdir /home/e-smith/files/ibays/data/html
mkdir /home/e-smith/files/ibays/data/cgi-bin
mkdir /home/e-smith/files/ibays/data/files
- recreate the quota on this FS
quotacheck -cguv /home/e-smith/files/ibays/data
signal-event ibay-modify data
and you are nearly done. Add the following line in the /etc/fstab file
/dev/hdb1 /home/e-smith/files/ibays/data ext3 usrquota,grpquota 1 1
Do not worry about the template based advice on the top of the file, you really have to edit this one.
That's it
before performing these actions, you have to basically know what is a FS, a mount point, an editor (vi, pico) and understand some system reports.
some of the above commands can wipe you existing data (ie: you do not address your new disk but the exiting one), be aware of this
Rgds
Gaston
PS most of the above informations came from
Grand'Pa french site
[edit] corrected mount point name[/edit]