<?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: How to add a new partition in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041145#M76200</link>
    <description>Sunil,&lt;BR /&gt;  I will add little more to the details.  Just now I finished creating one!!&lt;BR /&gt;&lt;BR /&gt;  Before creating a new partition print the info with p.  Make sure you start with the correct cylinder.  fdisk will give you the first and last cylinder.  Calculate it w.r.t your requirements.&lt;BR /&gt;&lt;BR /&gt;  You can also use mke2fs.  Check the man pages for more info.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Umapathy&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 05 Aug 2003 13:52:09 GMT</pubDate>
    <dc:creator>Umapathy S</dc:creator>
    <dc:date>2003-08-05T13:52:09Z</dc:date>
    <item>
      <title>How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041141#M76196</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am having Red hat Linus 8.0.&lt;BR /&gt;i have free space on disk and i want to create a new File system on this.&lt;BR /&gt;How can i do it ?&lt;BR /&gt;please give me step by step process with commands.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sunil</description>
      <pubDate>Tue, 05 Aug 2003 03:41:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041141#M76196</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2003-08-05T03:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041142#M76197</link>
      <description>I think this is the best guide.&lt;BR /&gt;&lt;A href="http://www.linux.org/docs/ldp/howto/Filesystems-HOWTO-6.html" target="_blank"&gt;http://www.linux.org/docs/ldp/howto/Filesystems-HOWTO-6.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Theory, how to extend a filesystem.&lt;BR /&gt;&lt;A href="http://tldp.org/HOWTO/Filesystems-HOWTO-6.html" target="_blank"&gt;http://tldp.org/HOWTO/Filesystems-HOWTO-6.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This manual almost everything you need.&lt;BR /&gt;&lt;A href="http://www.cslab.vt.edu/manuals/parted-1.6.1/html_mono/parted.html" target="_blank"&gt;http://www.cslab.vt.edu/manuals/parted-1.6.1/html_mono/parted.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Example, growing a partition ext2&lt;BR /&gt;&lt;A href="http://www.cslab.vt.edu/manuals/parted-1.6.1/html_mono/parted.html#SEC30" target="_blank"&gt;http://www.cslab.vt.edu/manuals/parted-1.6.1/html_mono/parted.html#SEC30&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;More...&lt;BR /&gt;&lt;A href="http://lists.suse.com/archive/suse-linux-e/2002-Oct/1988.html" target="_blank"&gt;http://lists.suse.com/archive/suse-linux-e/2002-Oct/1988.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You don't mention whether you are using lvm or not.  If you are using lvm its just like HP-UX(checked out your profile)&lt;BR /&gt;&lt;BR /&gt;umount&lt;BR /&gt;lvextend&lt;BR /&gt;extendfs&lt;BR /&gt;&lt;BR /&gt;If not the links are good.&lt;BR /&gt;&lt;BR /&gt;sEP</description>
      <pubDate>Tue, 05 Aug 2003 04:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041142#M76197</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-05T04:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041143#M76198</link>
      <description>To partition a disk use fdisk&lt;BR /&gt;#fdisk /dev/hda&lt;BR /&gt; n - add a new partition&lt;BR /&gt; w write table to disk and exit&lt;BR /&gt;&lt;BR /&gt;The new table will be used at the next reboot.&lt;BR /&gt;#reboot&lt;BR /&gt;&lt;BR /&gt;To create a filesystem use mkfs.&lt;BR /&gt;Making file system named "/home_new" on hdb1&lt;BR /&gt;# mkfs -V -t ext3 -L /home_new /dev/hdb1&lt;BR /&gt;&lt;BR /&gt;To mount a filesystem change fstab.&lt;BR /&gt;#vi fstab&lt;BR /&gt;/dev/hdb1    /home_new    ext3    defaults 1 2&lt;BR /&gt;&lt;BR /&gt;Mount all filesystems (of the given types) mentioned in fstab.&lt;BR /&gt;&lt;BR /&gt;#mount -a&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs</description>
      <pubDate>Tue, 05 Aug 2003 04:49:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041143#M76198</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-08-05T04:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041144#M76199</link>
      <description>To create a new partition, use&lt;BR /&gt;# fdisk /dev/hdx &lt;BR /&gt;if you have unpartitioned space on hdx.&lt;BR /&gt;Option n will guide you through making it. &lt;BR /&gt;Option w will write your new partition table to disk.&lt;BR /&gt;&lt;BR /&gt;You may have to reboot before you can perform the next steps.&lt;BR /&gt;&lt;BR /&gt;To create a filesystem on the new partition, use&lt;BR /&gt;# mkfs /dev/hdxn&lt;BR /&gt;where hdxn is the new partition, ie. hda6.&lt;BR /&gt;&lt;BR /&gt;After this step, you can mount the newly created filesystem, with&lt;BR /&gt;# mount /dev/hdxn /mountpoint&lt;BR /&gt;&lt;BR /&gt;Remember to create the mountpoint directory first. You might want to add the new filesystem to /etc/fstab.&lt;BR /&gt;&lt;BR /&gt;For detailed info, see manpages for fdisk, mkfs and mount.&lt;BR /&gt;&lt;BR /&gt;EJ</description>
      <pubDate>Tue, 05 Aug 2003 04:50:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041144#M76199</guid>
      <dc:creator>Evert Jan van Ramselaar</dc:creator>
      <dc:date>2003-08-05T04:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041145#M76200</link>
      <description>Sunil,&lt;BR /&gt;  I will add little more to the details.  Just now I finished creating one!!&lt;BR /&gt;&lt;BR /&gt;  Before creating a new partition print the info with p.  Make sure you start with the correct cylinder.  fdisk will give you the first and last cylinder.  Calculate it w.r.t your requirements.&lt;BR /&gt;&lt;BR /&gt;  You can also use mke2fs.  Check the man pages for more info.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Umapathy&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Aug 2003 13:52:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041145#M76200</guid>
      <dc:creator>Umapathy S</dc:creator>
      <dc:date>2003-08-05T13:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041146#M76201</link>
      <description>Hi,&lt;BR /&gt;Thanks to all of you.&lt;BR /&gt;but small doubt remains&lt;BR /&gt;is it necessary to rebbot after creation of new partition ?&lt;BR /&gt;&lt;BR /&gt;Sunil</description>
      <pubDate>Wed, 06 Aug 2003 02:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041146#M76201</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2003-08-06T02:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041147#M76202</link>
      <description>Sunil,&lt;BR /&gt;&lt;BR /&gt;  This is from man fdisk&lt;BR /&gt;&lt;BR /&gt;&lt;MAN&gt;&lt;BR /&gt;A sync() and a BLKRRPART ioctl() (reread partition table from disk) are performed  before  exiting  when  the partition table has been updated. Long ago it used to be necessary to reboot after the use of  fdisk.   I do  not  think this is the case anymore - indeed, rebooting too quickly might cause loss of not-yet-written data. Note that both the kernel and the disk hardware may buffer data.&lt;BR /&gt;&lt;/MAN&gt;&lt;BR /&gt;&lt;BR /&gt;  So I dont think it is necessary to reboot.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Umapathy&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Aug 2003 02:46:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041147#M76202</guid>
      <dc:creator>Umapathy S</dc:creator>
      <dc:date>2003-08-06T02:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a new partition</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041148#M76203</link>
      <description>Thanks Uma.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Aug 2003 03:54:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-add-a-new-partition/m-p/3041148#M76203</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2003-08-06T03:54:33Z</dc:date>
    </item>
  </channel>
</rss>

