<?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 Mount new HD in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785667#M23291</link>
    <description>I have a Linux server running RH8 , there is a SCSI harddisk sda is running , now I want to plug a new harddisk to the server and mount to to sdb , could advise how can I mount the new harddisk ? thx</description>
    <pubDate>Wed, 10 May 2006 06:00:35 GMT</pubDate>
    <dc:creator>ivychung2</dc:creator>
    <dc:date>2006-05-10T06:00:35Z</dc:date>
    <item>
      <title>Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785667#M23291</link>
      <description>I have a Linux server running RH8 , there is a SCSI harddisk sda is running , now I want to plug a new harddisk to the server and mount to to sdb , could advise how can I mount the new harddisk ? thx</description>
      <pubDate>Wed, 10 May 2006 06:00:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785667#M23291</guid>
      <dc:creator>ivychung2</dc:creator>
      <dc:date>2006-05-10T06:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785668#M23292</link>
      <description>- Install your new disk.&lt;BR /&gt;- Partition your disk&lt;BR /&gt;&lt;BR /&gt;# fdisk /dev/sdb&lt;BR /&gt;n&lt;BR /&gt;p&lt;BR /&gt;Enter&lt;BR /&gt;Enter&lt;BR /&gt;w&lt;BR /&gt;&lt;BR /&gt;- Create the file system&lt;BR /&gt;# mkfs -t ext2 /dev/sdb1&lt;BR /&gt;&lt;BR /&gt;- Create the mount point&lt;BR /&gt;mkdir /disk1&lt;BR /&gt;&lt;BR /&gt;- Mount the disk&lt;BR /&gt;mount /dev/sdb1 /disk1&lt;BR /&gt;&lt;BR /&gt;- Edit /etc/fstab so the disk can be mounted at boot time.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 May 2006 08:25:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785668#M23292</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-05-10T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785669#M23293</link>
      <description>thx reply ,&lt;BR /&gt;&lt;BR /&gt;The new HD have the partition already , so it didn't need to be partition , if so , do i still need to create the file system by " Create the file system&lt;BR /&gt;# mkfs -t ext2 /dev/sdb1 "&lt;BR /&gt;&lt;BR /&gt;will this command erase the data in the HD , actually the new HD have partition and data inside , it is not brand new HD . &lt;BR /&gt;&lt;BR /&gt;thx&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 May 2006 09:22:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785669#M23293</guid>
      <dc:creator>ivychung2</dc:creator>
      <dc:date>2006-05-10T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785670#M23294</link>
      <description>Shalom&lt;BR /&gt;&lt;BR /&gt;Most server class boxes need to be booted into a disk utility application to modify storage.&lt;BR /&gt;&lt;BR /&gt;HP servers come with a CD to boot with that will take you to a menu that permits you to add the new disk to the disk array.&lt;BR /&gt;&lt;BR /&gt;The IBM euivalent is built into the ROM-Bios.&lt;BR /&gt;&lt;BR /&gt;After configuring the disk, it will be available.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 10 May 2006 09:24:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785670#M23294</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-05-10T09:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785671#M23295</link>
      <description>If the disk already has data, you don't have to do the steps above. This is only for new disks.&lt;BR /&gt;&lt;BR /&gt;Just install the new disk, check the file system type with fdisk -l, then just mount the partition:&lt;BR /&gt;&lt;BR /&gt;mount -t &lt;FSTYPE&gt; /dev/sdb1 /&lt;MOUNT point=""&gt;&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;mount -t ext2 /dev/sdb1 /datadisk&lt;BR /&gt;&lt;BR /&gt;Edit /etc/fstab and add an entry for this file system.&lt;/MOUNT&gt;&lt;/FSTYPE&gt;</description>
      <pubDate>Wed, 10 May 2006 09:39:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785671#M23295</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-05-10T09:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Mount new HD</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785672#M23296</link>
      <description>I guess system will automatically recognize it as sdb because you already have a disk configured as sda. &lt;BR /&gt;&lt;BR /&gt;if you want to format it use fdisk command else you can use mount command to mount it and edit /etc/fstab file if you want to be mounted every time machine reboots.&lt;BR /&gt;&lt;BR /&gt;-chakri</description>
      <pubDate>Wed, 10 May 2006 14:12:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-new-hd/m-p/3785672#M23296</guid>
      <dc:creator>V S Chakravarthi</dc:creator>
      <dc:date>2006-05-10T14:12:28Z</dc:date>
    </item>
  </channel>
</rss>

