<?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: mount point to disk mapping in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982546#M782210</link>
    <description>Thanks for all replies, they were exactly what I was after</description>
    <pubDate>Fri, 02 Jun 2006 04:05:44 GMT</pubDate>
    <dc:creator>Chris Baugh</dc:creator>
    <dc:date>2006-06-02T04:05:44Z</dc:date>
    <item>
      <title>mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982540#M782204</link>
      <description>Apologies if this is a basic question. Is there any way of reporting mount point to disk mappings, or are there any files on the system that will contain the details. &lt;BR /&gt;&lt;BR /&gt;I need to check the mappings on a clients system, so don't have root access.</description>
      <pubDate>Fri, 02 Jun 2006 02:45:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982540#M782204</guid>
      <dc:creator>Chris Baugh</dc:creator>
      <dc:date>2006-06-02T02:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982541#M782205</link>
      <description>bdf</description>
      <pubDate>Fri, 02 Jun 2006 02:57:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982541#M782205</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2006-06-02T02:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982542#M782206</link>
      <description>bdf will show ur currently mounted file systems, view /etc/fstab file, mount points in this file will mount once u will issue a mount -a command or during a system reboot.</description>
      <pubDate>Fri, 02 Jun 2006 03:04:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982542#M782206</guid>
      <dc:creator>AwadheshPandey</dc:creator>
      <dc:date>2006-06-02T03:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982543#M782207</link>
      <description>Sorry, I haven't been clear with my question.&lt;BR /&gt;I know /etc/fstab will display the Volume to Mount point mapping. What I wanted was to go a step further and find the Volume to device file mapping. For example, on our development machine&lt;BR /&gt;&lt;BR /&gt;Mount Point /u10 maps to Volume /dev/vg01/lvol20, which in turn maps to Device File /dev/dsk/c3t15d0&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Jun 2006 03:16:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982543#M782207</guid>
      <dc:creator>Chris Baugh</dc:creator>
      <dc:date>2006-06-02T03:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982544#M782208</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;With the following command you can see which disks belong to a Volume group:&lt;BR /&gt; strings /etc/lvmtab&lt;BR /&gt;/dev/vg00&lt;BR /&gt;/dev/dsk/c1t6d0&lt;BR /&gt;/dev/dsk/c2t6d0&lt;BR /&gt;&lt;BR /&gt;With pvdisplay -v &lt;DISK-DEVICE&gt;&lt;BR /&gt;You can see which lvols are on the disk.&lt;BR /&gt;&lt;BR /&gt;Darrel&lt;BR /&gt;&lt;/DISK-DEVICE&gt;</description>
      <pubDate>Fri, 02 Jun 2006 03:36:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982544#M782208</guid>
      <dc:creator>Darrel Louis</dc:creator>
      <dc:date>2006-06-02T03:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982545#M782209</link>
      <description>Here have this - this will give you the output mountpoint:volumename:disk1:disk2:..&lt;BR /&gt;&lt;BR /&gt;mount | awk '{print $1,$3}' | while read mountpt volname&lt;BR /&gt;do&lt;BR /&gt;echo "$mountpt:$volname:\c"&lt;BR /&gt;lvdisplay -v $volname | awk '/Distribution of logical volume/,/Logical extents/' | grep '/dev/dsk' | awk 'ORS=":" {print $1}'&lt;BR /&gt;echo "\r"&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad</description>
      <pubDate>Fri, 02 Jun 2006 04:00:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982545#M782209</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2006-06-02T04:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: mount point to disk mapping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982546#M782210</link>
      <description>Thanks for all replies, they were exactly what I was after</description>
      <pubDate>Fri, 02 Jun 2006 04:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mount-point-to-disk-mapping/m-p/4982546#M782210</guid>
      <dc:creator>Chris Baugh</dc:creator>
      <dc:date>2006-06-02T04:05:44Z</dc:date>
    </item>
  </channel>
</rss>

