<?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 expand disk space on linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286182#M34175</link>
    <description>&amp;gt;first thing i got to do before adding the &amp;gt;drive to a volume group is figure out which &amp;gt;controller/bus it's on is there a way to do &amp;gt;this without rebooting the system?&lt;BR /&gt;&lt;BR /&gt;This very much depends on your hardware.&lt;BR /&gt;I already had cases where the vendor claimed that when I replace a failed internal scsi disk by plugging the new disk in the emptied slot the system should autodetect the new disk, and it actually didn't, so that I was forced to reboot for the kernel to become aware of the new disk so that the sfdisk command to write a partition table on it could be applied.&lt;BR /&gt;&lt;BR /&gt;Sometimes one could force a bus rescan by issuing something like this (select the right HBA)&lt;BR /&gt;&lt;BR /&gt;# echo "- - -" &amp;gt; /sys/class/scsi_host/host0/scan&lt;BR /&gt;&lt;BR /&gt;But this isn't guaranteed to work everywhere.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;kind of like ioscan on hpux?&lt;BR /&gt;&lt;BR /&gt;not really, but new devices should appear in the virtual procfs mounted as /proc&lt;BR /&gt;&lt;BR /&gt;Most Linux tools for HW sensing/detection mainly read from /proc it appears to me.</description>
    <pubDate>Wed, 15 Oct 2008 10:58:55 GMT</pubDate>
    <dc:creator>Ralph Grothe</dc:creator>
    <dc:date>2008-10-15T10:58:55Z</dc:date>
    <item>
      <title>how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286175#M34168</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I'm very new to Linux. We have a drive on our linux box that is nfs mounted to the hp boxes. the drive is getting full and since there was not a volume group created on it, need to know if there is a way to expand it at this poing could we create a volume group and add that disk to it at this time?&lt;BR /&gt;&lt;BR /&gt;here is the information I get on the system:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; pvdisplay -v /dev/sda1&lt;BR /&gt;    Using physical volume(s) on command line&lt;BR /&gt;  No physical volume label read from /dev/sda1&lt;BR /&gt;  Failed to read physical volume "/dev/sda1"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/dev/sda1            258033560 229383152  15542980  94% /vol&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;your help is very much appreciated since this is becoming an urgent situation.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Oct 2008 23:01:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286175#M34168</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-13T23:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286176#M34169</link>
      <description>Hi&lt;BR /&gt;You have only one disk and that is full.&lt;BR /&gt;add one more disk and create&lt;BR /&gt;1. physical volume: &lt;BR /&gt;pvcreate /dev/sda1&lt;BR /&gt;pvcreate /dev/sdb1&lt;BR /&gt;2. create volume group&lt;BR /&gt;vgcreate VolGroup00 /dev/sda1 /dev/sdb1&lt;BR /&gt;3. create logical volume&lt;BR /&gt;lvcreate -L 10G /dev/VolGroup00/LogVol01&lt;BR /&gt;lvcreate -L 10G /dev/VolGroup00/LogVol02&lt;BR /&gt;&lt;BR /&gt;T</description>
      <pubDate>Tue, 14 Oct 2008 05:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286176#M34169</guid>
      <dc:creator>Jayan Nair</dc:creator>
      <dc:date>2008-10-14T05:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286177#M34170</link>
      <description>Becareful... pvcreate /dev/sda1 will destroy your data.&lt;BR /&gt;1. Backup your data&lt;BR /&gt;2. Add a new drive&lt;BR /&gt;3. pvcreate /dev/sda1&lt;BR /&gt;4. pvcreate /dev/sdb1 (assuming the new drive's been partitioned... etc)&lt;BR /&gt;5. Create your volume group using vgcreate&lt;BR /&gt;6. Create your logical volume using lvcreate&lt;BR /&gt;7. Create a filesystem with mkfs.ext3&lt;BR /&gt;8. Edit your /etc/fstab&lt;BR /&gt;9. Mount it and restore your backup.&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Oct 2008 07:31:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286177#M34170</guid>
      <dc:creator>kelvinlnx</dc:creator>
      <dc:date>2008-10-14T07:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286178#M34171</link>
      <description>&lt;!--!*#--&gt;Hi Kathy,&lt;BR /&gt;&lt;BR /&gt;it hasn't become fully clear to me if you want to change from old partition to LVM layout?&lt;BR /&gt;&lt;BR /&gt;Since you applied the pvdisplay command unsuccessfully on /dev/sda1 this partition obviously isn't an LVM PV and thus can't be used to extend any volumes.&lt;BR /&gt;Unless you provide pvcreate with a whole disk but rather a dedicated partition (as we usually do) this partition needs to be marked as being of type 0x8e by some tool like fdisk.&lt;BR /&gt;Let me show you on one of my boxes.&lt;BR /&gt;Either the pvscan or pvs command will list all valid LVM PVs on the system&lt;BR /&gt;(to be more precise, only those which aren't exempt by an "r" filter in lvm.conf which sometimes is necessary if you e.g. use DRBD devices)&lt;BR /&gt;&lt;BR /&gt;[root@nagsaz:~]&lt;BR /&gt;# pvs&lt;BR /&gt;  PV         VG     Fmt  Attr PSize PFree  &lt;BR /&gt;  /dev/sda2  vgrh   lvm2 a-   9.62G 560.00M&lt;BR /&gt;  /dev/sda4  vgdata lvm2 a-   9.62G   7.38G&lt;BR /&gt;&lt;BR /&gt;So for that to work both partitions /dev/sda[24] must have been assigned the 0x8e  type flag, and as fdisk proves they have.&lt;BR /&gt;&lt;BR /&gt;[root@nagsaz:~]&lt;BR /&gt;# fdisk -l /dev/sda&lt;BR /&gt;&lt;BR /&gt;Disk /dev/sda: 21.4 GB, 21474836480 bytes&lt;BR /&gt;255 heads, 63 sectors/track, 2610 cylinders&lt;BR /&gt;Units = cylinders of 16065 * 512 = 8225280 bytes&lt;BR /&gt;&lt;BR /&gt;   Device Boot      Start         End      Blocks   Id  System&lt;BR /&gt;/dev/sda1   *           1          33      265041   83  Linux&lt;BR /&gt;/dev/sda2              34        1289    10088820   8e  Linux LVM&lt;BR /&gt;/dev/sda3            1290        1353      514080   82  Linux swap / Solaris&lt;BR /&gt;/dev/sda4            1354        2610    10096852+  8e  Linux LVM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you run the fdisk -l command on your system you will see if all cylinders are already allocated by some partition or if you have some still left free.&lt;BR /&gt;If the latter is the case then you can create a new partition to make up a new volume group.&lt;BR /&gt;To do this run fdisk without any options but only the appropriate disk device as argument.&lt;BR /&gt;&lt;BR /&gt;BEWARE, BEFORE YOU CARRY ON BACKUP ALL YOUR DATA!&lt;BR /&gt;&lt;BR /&gt;But the least you should do is backup the MBR of the disk to some safe place.&lt;BR /&gt;This can easily done like so&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/sda bs=512 count=1 | ssh remuser@remhost dd of=/some/backupdir/host-xyz_sda.mbr&lt;BR /&gt;&lt;BR /&gt;And to be on the safe side also capture an sfdisk dump&lt;BR /&gt;&lt;BR /&gt;# sfdisk -d /dev/sda | ssh remuser@remhost 'cat &amp;gt;/some/backupdir/host-xyz_sfdisk_sda.txt'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now it depends if you previously partitioned just using primary partitions or if your 4th and last viable partition is a so called extended partition (container).&lt;BR /&gt;In the latter case you can at heart's content create several partitions within this extended one which you can all give the 8e type flag (well there is an upper boundary of course)&lt;BR /&gt;If on the other hand you have all four possible primary partitions used up then you already reached the end.&lt;BR /&gt;However, if you have less than four partitions and cylinders still left you may as well create another primary partition and make it 8e.&lt;BR /&gt;Do the following (after the backup!)&lt;BR /&gt;press those keys while in fdisk:&lt;BR /&gt;"n" will create an new partition, and will ask you the offset for the starting cylinder.&lt;BR /&gt;If you previously partitioned sensibly without any gaps then you can safely press return and accept the offered default.&lt;BR /&gt;Next it will ask you for the last cylinder and default for the very last that is still available.&lt;BR /&gt;If that's ok again just press return.&lt;BR /&gt;If you however want to specify a size rather than an offset you may do so by typing e.g. "+4g" to make the partition roughly 4 GB big (there's usually some rounding deviation), provided the still free cylinders allow for this size. If not you will get an error and asked to retry anyway.&lt;BR /&gt;Next you must select the partition's type by pressing "t" and will be asked to which partition No. this should apply (note, fdisk contrary to usual IT convention starts numbering with 1).&lt;BR /&gt;So if you created the fourth partitions press 4.&lt;BR /&gt;Next you will be asked for the type code, which I already mentioned several times.&lt;BR /&gt;So type "8e" or if you are curiuos "l" to see a long list of partition types fdisk knows of.&lt;BR /&gt;Finally press "p" to get a display of your changes.&lt;BR /&gt;If all is acceptable press "w" to have the new partition table written and exited from fdisk. It is at this point where a restore from your backup might become a bailout.&lt;BR /&gt;&lt;BR /&gt;Now there is a really annoying glitch with most RH kernels, and fdisk will probably emit such a warning.&lt;BR /&gt;The running kernel doesn't yet know of the new partition table and thus to carry on usually a reboot is required.&lt;BR /&gt;&lt;BR /&gt;I once during a Linux Tag here in Berlin was so bold to ask RH kernel legend Alan Cox about this annoying "feature" after a talk of his, and even he couldn't give me a compelling reason for that and passed the blame to the LVM layer developers ;-)&lt;BR /&gt;&lt;BR /&gt;So if you are ready reboot&lt;BR /&gt;&lt;BR /&gt;# init 6&lt;BR /&gt;&lt;BR /&gt;After the system is back you can now create your first PV,&lt;BR /&gt;so assuming we chose sda4 you would&lt;BR /&gt;&lt;BR /&gt;# pvcreate /dev/sda4&lt;BR /&gt;&lt;BR /&gt;Ther rest is the usal LVM stuff like&lt;BR /&gt;&lt;BR /&gt;# vgcreate vgdata /dev/sda4&lt;BR /&gt;&lt;BR /&gt;# vgs&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L 1g -n lv_something vgdata&lt;BR /&gt;&lt;BR /&gt;# mke2fs -j /dev/vgdata/lv_something&lt;BR /&gt;&lt;BR /&gt;# mkdir -p /mnt/somewhere&lt;BR /&gt;&lt;BR /&gt;# mount /dev/vgdata/lv_something /mnt/somewhere&lt;BR /&gt;&lt;BR /&gt;And later when you run out of space&lt;BR /&gt;&lt;BR /&gt;# lvextend -L +512m /dev/vgdata/lv_something&lt;BR /&gt;&lt;BR /&gt;# resize2fs /dev/vgdata/lv_something&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Oct 2008 11:45:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286178#M34171</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-10-14T11:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286179#M34172</link>
      <description>Thank you all for your help.&lt;BR /&gt;&lt;BR /&gt;Ralph:&lt;BR /&gt;&lt;BR /&gt;it hasn't become fully clear to me if you want to change from old partition to LVM layout?  &lt;BR /&gt;&lt;BR /&gt;&lt;THIS would="" be="" the="" ultimate="" great="" thing="" to="" do="" if="" it="" could="" be="" done="" without="" destroying="" the="" data.="" the="" easiest="" way="" would="" be="" just="" to="" add="" another="" physical="" disk="" and="" split="" the="" data="https://community.hpe.com/" on="" them="" right=""&gt;&lt;BR /&gt;&lt;BR /&gt;Since you applied the pvdisplay command unsuccessfully on /dev/sda1 this partition obviously isn't an LVM PV and thus can't be used to extend any volumes. &lt;TRUE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[root@nagsaz:~]&lt;BR /&gt;# pvs&lt;BR /&gt;  PV         VG     Fmt  Attr PSize PFree  &lt;BR /&gt;  /dev/sda2  vgrh   lvm2 a-   9.62G 560.00M&lt;BR /&gt;  /dev/sda4  vgdata lvm2 a-   9.62G   7.38G&lt;BR /&gt;&lt;BR /&gt;So for that to work both partitions /dev/sda[24] must have been assigned the 0x8e  type flag, and as fdisk proves they have.&lt;BR /&gt;&lt;BR /&gt;[root@nagsaz:~]&lt;BR /&gt;# fdisk -l /dev/sda&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;WOULD fdisk="" destroy="" the="" data="https://community.hpe.com/"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks again.&lt;/WOULD&gt;&lt;/TRUE&gt;&lt;/THIS&gt;</description>
      <pubDate>Tue, 14 Oct 2008 15:11:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286179#M34172</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-14T15:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286180#M34173</link>
      <description>I have another thread open regarding ioscan, but since it's kind of related I ask here too.&lt;BR /&gt;&lt;BR /&gt;first thing i got to do before adding the drive to a volume group is figure out which controller/bus it's on is there a way to do this without rebooting the system?&lt;BR /&gt;&lt;BR /&gt;kind of like ioscan on hpux?&lt;BR /&gt;&lt;BR /&gt;thank you</description>
      <pubDate>Tue, 14 Oct 2008 20:01:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286180#M34173</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-14T20:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286181#M34174</link>
      <description>&lt;!--!*#--&gt;Hi Kathy,&lt;BR /&gt;&lt;BR /&gt;&lt;WOULD fdisk="" destroy="" the="" data="https://community.hpe.com/"&gt;&lt;BR /&gt;&lt;BR /&gt;No, fdisk would only modify the partition table  on the disk.&lt;BR /&gt;So if you somehow buggered up your partition table, and haven't yet done the following with the new partition(s): created new filesystems, MD Raid or swap devices, or used them as PV for LVM then no data should be touched.&lt;BR /&gt;That's why I advised you to run the "sfdisk -d" dump command before issuing the "w" write command in fdisk.&lt;BR /&gt;In such a case you could restore your old partition table by simply reading it from stdin.&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;# ssh remuser@remhost cat /some/backupdir/host-xyz_sfdisk_sda.txt | sfdisk /dev/sda&lt;BR /&gt;&lt;BR /&gt;or if you have the dump already on localhost more easily&lt;BR /&gt;&lt;BR /&gt;# sfdisk /dev/sda &amp;lt; /some/localbackupdir/fdisk_sda.txt&lt;BR /&gt;&lt;BR /&gt;This is also very handy where you need exactly identical partition layouts as when you mirror your root disks by SW MD raidtools (as we do on our boxes), or every time you need to replace a failed disk.&lt;/WOULD&gt;</description>
      <pubDate>Wed, 15 Oct 2008 10:41:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286181#M34174</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-10-15T10:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286182#M34175</link>
      <description>&amp;gt;first thing i got to do before adding the &amp;gt;drive to a volume group is figure out which &amp;gt;controller/bus it's on is there a way to do &amp;gt;this without rebooting the system?&lt;BR /&gt;&lt;BR /&gt;This very much depends on your hardware.&lt;BR /&gt;I already had cases where the vendor claimed that when I replace a failed internal scsi disk by plugging the new disk in the emptied slot the system should autodetect the new disk, and it actually didn't, so that I was forced to reboot for the kernel to become aware of the new disk so that the sfdisk command to write a partition table on it could be applied.&lt;BR /&gt;&lt;BR /&gt;Sometimes one could force a bus rescan by issuing something like this (select the right HBA)&lt;BR /&gt;&lt;BR /&gt;# echo "- - -" &amp;gt; /sys/class/scsi_host/host0/scan&lt;BR /&gt;&lt;BR /&gt;But this isn't guaranteed to work everywhere.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;kind of like ioscan on hpux?&lt;BR /&gt;&lt;BR /&gt;not really, but new devices should appear in the virtual procfs mounted as /proc&lt;BR /&gt;&lt;BR /&gt;Most Linux tools for HW sensing/detection mainly read from /proc it appears to me.</description>
      <pubDate>Wed, 15 Oct 2008 10:58:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286182#M34175</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-10-15T10:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286183#M34176</link>
      <description>If you wish to put the OS of your running system onto LVM volumes this can be done almost entirely online, ok you require a final reboot to boot from the new layout.&lt;BR /&gt;&lt;BR /&gt;Although there are hacks out there that show how this can be done, there is one thing you should avoid. Don't put your /boot on an LV because this can cause a lot of headaches when you need to run a bare metal recovery.&lt;BR /&gt;It is best to spare a small entirely separate standard linux partition (type 0x83) and mount /boot on that.&lt;BR /&gt;But there is no issue putting /, /var, /usr, /home etc. on separate LVM volumes.&lt;BR /&gt;In fact LVM gives you greater flexibility when you later need to online extend your /var or /.&lt;BR /&gt;Added to this you have free snapshot facility of all your LVs which is really a great thing for fast failback backups or to clone a living / and /var.&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:10:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286183#M34176</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-10-15T11:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286184#M34177</link>
      <description>thank you all, this gives me alot to work on.</description>
      <pubDate>Wed, 15 Oct 2008 15:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286184#M34177</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-15T15:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286185#M34178</link>
      <description>Ralph,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;should i copy this line exactley as it is? &lt;BR /&gt;not sure about right HBA.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sometimes one could force a bus rescan by issuing something like this (select the right HBA)&lt;BR /&gt;&lt;BR /&gt;# echo "- - -" &amp;gt; /sys/class/scsi_host/host0/scan&lt;BR /&gt;&lt;BR /&gt;But this isn't guaranteed to work everywhere</description>
      <pubDate>Wed, 15 Oct 2008 16:44:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286185#M34178</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-15T16:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286186#M34179</link>
      <description>Hello again Kathy,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;should i copy this line exactley as it is?&lt;BR /&gt;&amp;gt;not sure about right HBA.&lt;BR /&gt;&lt;BR /&gt;It depends to which controller your disk(s) is/are attached.&lt;BR /&gt;&lt;BR /&gt;Usually, you have several controllers like in this box&lt;BR /&gt;&lt;BR /&gt;$ ls -ld /sys/class/scsi_host/host?&lt;BR /&gt;drwxr-xr-x  2 root root 0 20. Apr 18:38 /sys/class/scsi_host/host0&lt;BR /&gt;drwxr-xr-x  2 root root 0 20. Apr 18:38 /sys/class/scsi_host/host1&lt;BR /&gt;drwxr-xr-x  2 root root 0 20. Apr 18:38 /sys/class/scsi_host/host2&lt;BR /&gt;&lt;BR /&gt;On the other hand on many virtual hosts of ours they often only see one controller.</description>
      <pubDate>Thu, 16 Oct 2008 06:51:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286186#M34179</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-10-16T06:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to expand disk space on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286187#M34180</link>
      <description>Thank you Ralph.</description>
      <pubDate>Thu, 16 Oct 2008 14:39:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-expand-disk-space-on-linux/m-p/4286187#M34180</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2008-10-16T14:39:27Z</dc:date>
    </item>
  </channel>
</rss>

