<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding a disk to RH8 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893790#M78137</link>
    <description>You can also use 'parted' to repartition (usually without data loss).  Read the man page for parted to find out about all the options.&lt;BR /&gt;&lt;BR /&gt;Bruce</description>
    <pubDate>Fri, 31 Jan 2003 14:49:24 GMT</pubDate>
    <dc:creator>Bruce Copeland</dc:creator>
    <dc:date>2003-01-31T14:49:24Z</dc:date>
    <item>
      <title>Adding a disk to RH8</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893788#M78135</link>
      <description>&lt;BR /&gt; Hi,&lt;BR /&gt;&lt;BR /&gt; I just added a 30GB hard drive to my Redhat 8 box. The hardware browser tool shows the disk as: &lt;BR /&gt; hdb1    FAT&lt;BR /&gt; hdb2    Extended&lt;BR /&gt; hdb5    FAT&lt;BR /&gt;&lt;BR /&gt;This disk was a windows disk. The problem is I'm not able to create any file systems on this disk. How can format it and use it? Is it possible to use LVM? (no LVM used currently)&lt;BR /&gt;&lt;BR /&gt;Appreciate any help.</description>
      <pubDate>Fri, 31 Jan 2003 10:51:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893788#M78135</guid>
      <dc:creator>Khalid A. Al-Tayaran</dc:creator>
      <dc:date>2003-01-31T10:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a disk to RH8</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893789#M78136</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if you want to access the old old data you just have to mount the partitions:&lt;BR /&gt;&lt;BR /&gt;$ mount /dev/hdb1 /mnt/Windows1 -t vfat&lt;BR /&gt;&lt;BR /&gt;$ mount /dev/hdb5 /mnt/Windows1 -t vfat&lt;BR /&gt;&lt;BR /&gt;If you want to use it as one linux filesystem you should repartition the disk with fdisk / cfdisk / ... and change the type to Linux (83). Then you should create a new filesystem on the new partition. You have to choose what filesystem you want (e.g. ext2, ext3, reiserfs) and use the required tool:&lt;BR /&gt;&lt;BR /&gt;$ mkreiserfs /dev/hdb1&lt;BR /&gt;&lt;BR /&gt;Then you can mount the partition&lt;BR /&gt;&lt;BR /&gt;$ mount /dev/hdb1 /mountpoint&lt;BR /&gt;&lt;BR /&gt;and include the mount in /etc/fstab.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;   Joche</description>
      <pubDate>Fri, 31 Jan 2003 13:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893789#M78136</guid>
      <dc:creator>Jochen Heuer</dc:creator>
      <dc:date>2003-01-31T13:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a disk to RH8</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893790#M78137</link>
      <description>You can also use 'parted' to repartition (usually without data loss).  Read the man page for parted to find out about all the options.&lt;BR /&gt;&lt;BR /&gt;Bruce</description>
      <pubDate>Fri, 31 Jan 2003 14:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893790#M78137</guid>
      <dc:creator>Bruce Copeland</dc:creator>
      <dc:date>2003-01-31T14:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a disk to RH8</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893791#M78138</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Jochen Heuer and Bruce Copeland: good solutions thanks for your responses.&lt;BR /&gt;&lt;BR /&gt; I tried Jochen's solution but I ran mkreiserfs first and created a Reiserfs file system and it worked. I mounted a directory and I'm done. For Bruce's solutin I did not try it but the following menu gave me a good idea og how to do it. Thanks&lt;BR /&gt;&lt;BR /&gt;(parted)                                                                     &lt;BR /&gt;  check MINOR                   do a simple check on the filesystem            &lt;BR /&gt;  cp [FROM-DEVICE] FROM-MINOR TO-MINOR      copy filesystem to another partitio&lt;BR /&gt;  help [COMMAND]                prints general help, or help on COMMAND        &lt;BR /&gt;  mklabel LABEL-TYPE            create a new disklabel (partition table)       &lt;BR /&gt;  mkfs MINOR FS-TYPE            make a filesystem FS-TYPE on partititon MINOR  &lt;BR /&gt;  mkpart PART-TYPE [FS-TYPE] START END      make a partition                   &lt;BR /&gt;  mkpartfs PART-TYPE FS-TYPE START END      make a partition with a filesystem &lt;BR /&gt;  move MINOR START [END]          move partition MINOR                         &lt;BR /&gt;  name MINOR NAME               name partition MINOR NAME                      &lt;BR /&gt;  print                         display the partition table                    &lt;BR /&gt;  quit                          exit program                                   &lt;BR /&gt;  resize MINOR START END        resize filesystem on partition MINOR           &lt;BR /&gt;  rm MINOR                      delete partition MINOR                         &lt;BR /&gt;  select DEVICE                 choose the device to edit                      &lt;BR /&gt;  set MINOR FLAG STATE          change a flag on partition MINOR        &lt;BR /&gt;&lt;BR /&gt; Thanks again......</description>
      <pubDate>Sat, 01 Feb 2003 08:39:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-a-disk-to-rh8/m-p/2893791#M78138</guid>
      <dc:creator>Khalid A. Al-Tayaran</dc:creator>
      <dc:date>2003-02-01T08:39:51Z</dc:date>
    </item>
  </channel>
</rss>

