<br><br><div><span class="gmail_quote">On 10/31/05, <b class="gmail_sendername">Nada De nada</b> &lt;<a href="mailto:marromzinho02@yahoo.com">marromzinho02@yahoo.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br> Hi<br><br> I am trying to increas my video storage capcity. I<br>attached a new hard drive.. and I would like to know<br>if there is an easy way to set up Fedora and partition<br>the new hard drive...also once I do that.. how can I
<br>link my video partition dev/hda5 (jfs format) to the<br>new drive<br><br> Thanks</blockquote><div><br>
When you say set up Fedora, do you mean have Fedora recognize the drive, or that it's not installed at all?<br>
<br>
It should recognize it as soon as you boot up.&nbsp; I'm not sure if
Fedora has a friendly tool for disk partitions, but fdisk isn't
terrible if you read a little.<br>
<br>
Do you want to combine the two drives into one larger partition, or do
you want to replace the partition you have with the new drive, and use
your old partition for something else?<br>
<br>
If you want to combine the drives (Say, you have 50GB now on /dev/hda5
and you have 250GB on /dev/hdb and you want to have 300GB on
/mnt/video) you should look into LVM, which is surprisingly easy to set
up.&nbsp; I believe you can grow&nbsp; and shrink jfs.<br>
&nbsp;</div>If you want to replace it, it's easier.&nbsp; Here are the general steps, use man for exact parameters:<br>
<br>
1) Use fdisk to create one large primary partition on your new drive
(probably /dev/hdb if it's on the same cable as your original drive)<br>
2) Set the type of the new partion to 83 Linux<br>
3) Write and close fdisk<br>
4) Make the file system on the new partition: mkfs.jfs /dev/hdb1<br>
5) Mount the file system in a temporary place: mkdir /mnt/newDriveTemp/
&amp;&amp;&nbsp; mount -t jfs /dev/hdb1 /mnt/newDriveTemp<br>
6) Copy everything over (there may be better ways to do this part): cp -a /mnt/video /mnt/newDriveTemp<br></div>7) Modify fstab and replace the reference to /dev/hda5 with /dev/hdb1<br>
8) Depending on whether the file system is in use (if /dev/hda5 is your
/home for example) you may need to reboot instead of just unmount
/mnt/newDriveTemp and /mnt/video and mount your new partition in it's
place.<br>
<br>
<br>
Ryan<br>