HostingZero.com

Active Member
Jun 23, 2005
28
0
151
I am trying to move one account to my second hard drive. I get "Sorry, there is only one drive in this machine" when trying to do this. Anyone knows why? My second hard drive IS present and mounted.
 

kilroy

Active Member
Jun 22, 2002
37
0
156
You probably need to format the drive and mount it. In WHM click on disk drives and then format/mount a new hard drive.

Roger
 

HostingZero.com

Active Member
Jun 23, 2005
28
0
151
I have some stuff on it. But why would I have to format it? Plus, if I go to "Format/Mount a new Hard Drive" I get: "Found Disk: hdc ...". I don't have hdc. I have hda & hdb. Help? :rolleyes:
 

HostingZero.com

Active Member
Jun 23, 2005
28
0
151
This is weird. So...does anyone know how to move account(s) to another partition using this feature?
 

madan.cpanelnet

Well-Known Member
Apr 1, 2006
69
0
156
INDIA
First look at the partition table:
######################

#fdisk -l

then depending on what it shows /dev/hdb (or hdc--should be hdb though);

issue the command,

# fdisk /dev/hdb

select n to create new partition and then partition it as you wish.

Next;

Issue part probe command to refresh partition table in the memory
Then;
# fdisk -l ( see the differences)

format those partitions
################
# mke2fs -j /dev/hdb1 ( and so on depending on the number of partitions )
Then you can apply a label on the partition if you want.

Next create any folder say /newhdd ( is on /dev/hda) and use it to mount point for the partions in the 2nd harddisk

#mount -t ext3 /dev/hdb1 /newhdd

Add an entry to /etc/fstab so that these partitions are mounted on boot.

Move the /home/<username> folder to /newhdd after your mount the partition.

Now create a symlink in /home dir of hda .

ln -s /newhdd/<username> /home/<username>