<?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: Physical Disk information in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859390#M95728</link>
    <description>SAM will tell you. run sam and go to disk and filesystems.&lt;BR /&gt;&lt;BR /&gt;or;  ioscan -fknCdisk&lt;BR /&gt;&lt;BR /&gt;will list all disk devices, to see the size of each; diskinfo /dev/rdsk/cxxxxxx&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Dec 2002 17:15:10 GMT</pubDate>
    <dc:creator>Stefan Farrelly</dc:creator>
    <dc:date>2002-12-06T17:15:10Z</dc:date>
    <item>
      <title>Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859388#M95726</link>
      <description>Me: limited unix abilities.  Enough to be dangerous but striving to learn more.&lt;BR /&gt;&lt;BR /&gt;Problem:&lt;BR /&gt;Need to find out what the physical sizes are of the disks installed internally to this HP 9000 HP-UX 11i system and what is installed in the external array with out downing the system.&lt;BR /&gt;&lt;BR /&gt;bdf returns me wonderful lvol information but I need physical disk size info.&lt;BR /&gt;&lt;BR /&gt;What command(s) can I run to get this information?&lt;BR /&gt;&lt;BR /&gt;Thank you in advance!&lt;BR /&gt;&lt;BR /&gt;Mark Nelson</description>
      <pubDate>Fri, 06 Dec 2002 17:11:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859388#M95726</guid>
      <dc:creator>Mark Nelson_2</dc:creator>
      <dc:date>2002-12-06T17:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859389#M95727</link>
      <description>For standalone disk. First find out the device path ..&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;Then just run .. (example say c2t6d0)&lt;BR /&gt;# /etc/diskinfo /dev/rdsk/c2t6d0&lt;BR /&gt;&lt;BR /&gt;For diskarray, usually the above reflects the size of a LUN, not necessarily the size of individual disk in the array.</description>
      <pubDate>Fri, 06 Dec 2002 17:15:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859389#M95727</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-12-06T17:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859390#M95728</link>
      <description>SAM will tell you. run sam and go to disk and filesystems.&lt;BR /&gt;&lt;BR /&gt;or;  ioscan -fknCdisk&lt;BR /&gt;&lt;BR /&gt;will list all disk devices, to see the size of each; diskinfo /dev/rdsk/cxxxxxx&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Dec 2002 17:15:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859390#M95728</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-12-06T17:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859391#M95729</link>
      <description>use diskinfo on hte raw physical device&lt;BR /&gt;e.g. diskinfo /dev/rdsk/c0t6d0&lt;BR /&gt;should give your root disk.&lt;BR /&gt;dont use the vgxx files.&lt;BR /&gt;to look what device files to use, do&lt;BR /&gt;ioscan -funCdisk  and this will reveal all hte device files for your disks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Dec 2002 17:16:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859391#M95729</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2002-12-06T17:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859392#M95730</link>
      <description>Mark:&lt;BR /&gt;&lt;BR /&gt;Use:&lt;BR /&gt;&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;&lt;BR /&gt;...to identify physical devices&lt;BR /&gt;&lt;BR /&gt;# diskinfo /dev/rdsk/cXtYdZ&lt;BR /&gt;&lt;BR /&gt;...will return physical size&lt;BR /&gt;&lt;BR /&gt;# pvdisplay /dev/dsk/cXtYdZ&lt;BR /&gt;&lt;BR /&gt;...will show used and free amount of disk associated with LVM ('pvcreate'd)&lt;BR /&gt;&lt;BR /&gt;# vgdisplay -v&lt;BR /&gt;&lt;BR /&gt;...will show all LVM volume groups with logical volumes *and* associated physical devices *including* which devices (disk) are alternate (pv)links.&lt;BR /&gt;&lt;BR /&gt;# bdf&lt;BR /&gt;&lt;BR /&gt;...summarizes mountpoints and logical volumes&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 06 Dec 2002 17:20:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859392#M95730</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-12-06T17:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859393#M95731</link>
      <description>ioscan &lt;BR /&gt;sam---&amp;gt;disks and filesystems&lt;BR /&gt;print_manifest ( if you have ignite )&lt;BR /&gt;xstm , or cstm&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Fri, 06 Dec 2002 17:21:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859393#M95731</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-12-06T17:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859394#M95732</link>
      <description>Hi Mark,&lt;BR /&gt;&lt;BR /&gt;# ioscan -fnCdisk&lt;BR /&gt;disk      2  0/0/2/0.2.0  sdisk CLAIMED     DEVICE       SEAGATE ST39103LC&lt;BR /&gt;                         /dev/dsk/c2t2d0   /dev/rdsk/c2t2d0&lt;BR /&gt;disk      3  0/4/0/0.3.0  sdisk CLAIMED     DEVICE       SEAGATE ST318436LC&lt;BR /&gt;                         /dev/dsk/c5t3d0   /dev/rdsk/c5t3d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ST39103LC for instance is&lt;BR /&gt;&lt;BR /&gt;ST = Seagate Technology&lt;BR /&gt;3 = 3.5 inch&lt;BR /&gt;9103 = size in mb&lt;BR /&gt;&lt;BR /&gt;ST318436LC&lt;BR /&gt;&lt;BR /&gt;ST = Seagate Technology&lt;BR /&gt;3 = 3.5 inch&lt;BR /&gt;18436 = size in mb&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Robert-Jan.</description>
      <pubDate>Fri, 06 Dec 2002 17:30:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859394#M95732</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2002-12-06T17:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Physical Disk information</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859395#M95733</link>
      <description>Wow!&lt;BR /&gt;&lt;BR /&gt;Thank you all very much.&lt;BR /&gt;The more interesting part for me was that I was actually able to understand your replies and apply them!&lt;BR /&gt;&lt;BR /&gt;Its amazing what hands on and needing know will teach ya!&lt;BR /&gt;&lt;BR /&gt;Again, thanks for all the replies!&lt;BR /&gt;&lt;BR /&gt;Mark Nelson</description>
      <pubDate>Fri, 06 Dec 2002 17:36:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/physical-disk-information/m-p/2859395#M95733</guid>
      <dc:creator>Mark Nelson_2</dc:creator>
      <dc:date>2002-12-06T17:36:50Z</dc:date>
    </item>
  </channel>
</rss>

