<?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: bdf on automount NFS mounts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888734#M401960</link>
    <description>You are going to have to do an operation that causes a mount first and then run bdf. The bad news is that your cd's or ls -l's or whatevers are going to cause a potential mount storm -- the very thing that the automounter strives to avoid.</description>
    <pubDate>Tue, 01 Mar 2005 16:01:17 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2005-03-01T16:01:17Z</dc:date>
    <item>
      <title>bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888732#M401958</link>
      <description>I am stumped by this. I have automounter in play and it mounts NFS mounts as when required. (such when accessed, when cd'ed to that dir) I am preparing a script to check to report space usage for these mount points.&lt;BR /&gt;&lt;BR /&gt;I get usage for mounted NFS mounts. I tried using following&lt;BR /&gt;&lt;BR /&gt;bdf -t nfs&lt;BR /&gt;bdf /nfs/[a-zA-Z]*&lt;BR /&gt;bdf /nfs/"some_host_names"/[a-zA-Z]*&lt;BR /&gt;&lt;BR /&gt;automounts are served by nis map and looks like follows.&lt;BR /&gt;&lt;BR /&gt;/nfs -hosts             -rw,soft,nosuid&lt;BR /&gt;&lt;BR /&gt;With above approach I do not get bdf for all available NFS mounts. How do I address this??&lt;BR /&gt;&lt;BR /&gt;Thank you in Advance.</description>
      <pubDate>Tue, 01 Mar 2005 15:39:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888732#M401958</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-03-01T15:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888733#M401959</link>
      <description>You might have to do something like:&lt;BR /&gt;&lt;BR /&gt;for i in list of automount points&lt;BR /&gt;do&lt;BR /&gt;cd ${i}&lt;BR /&gt;bdf .&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;bdf doesn't have the capability to force an automount point to mount as far as I know.</description>
      <pubDate>Tue, 01 Mar 2005 16:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888733#M401959</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-03-01T16:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888734#M401960</link>
      <description>You are going to have to do an operation that causes a mount first and then run bdf. The bad news is that your cd's or ls -l's or whatevers are going to cause a potential mount storm -- the very thing that the automounter strives to avoid.</description>
      <pubDate>Tue, 01 Mar 2005 16:01:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888734#M401960</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-01T16:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888735#M401961</link>
      <description>I think the problem is that your commands that you're using are using wild-card expansion to expand along subdirs(nfs-mounts) that don't exist at the time the command is run.  Only a direct read(or write) from the subdir will reactivate the timed-out nfs connection. &lt;BR /&gt;The trick would be to do something to make the systems come current first, then run your bdf commands.&lt;BR /&gt;&lt;BR /&gt;Something along the lines of...&lt;BR /&gt;&lt;BR /&gt;for i in [some_host_names]&lt;BR /&gt;do&lt;BR /&gt;[if ! -r /nfs/$i/junkfile ]; then&lt;BR /&gt;   echo couldn't activate server $i&lt;BR /&gt;   exit 1&lt;BR /&gt;fi&lt;BR /&gt;bdf /nfs/$i&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Mar 2005 16:03:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888735#M401961</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-03-01T16:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888736#M401962</link>
      <description>Hi ARP,&lt;BR /&gt;&lt;BR /&gt;bdf -t nfs is working for automounted FS also.I verified it .&lt;BR /&gt;&lt;BR /&gt;Then what is the problem in getting size?.&lt;BR /&gt;&lt;BR /&gt;does bdf -t nfs works for you ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;BL.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Mar 2005 16:42:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888736#M401962</guid>
      <dc:creator>baiju_3</dc:creator>
      <dc:date>2005-03-01T16:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888737#M401963</link>
      <description>Thank you all. I think it works with bdf -t nfs. I had tried this, but had problems. I think that was about greps and awks that I was using to filter it.&lt;BR /&gt;blal pointed hat out. Also Patrcik and AC's pointers were also helpful.&lt;BR /&gt;&lt;BR /&gt;Finally I am doing bdf -t nfs.&lt;BR /&gt;&lt;BR /&gt;Points coming.</description>
      <pubDate>Wed, 02 Mar 2005 10:04:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888737#M401963</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-03-02T10:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: bdf on automount NFS mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888738#M401964</link>
      <description>As mentioned above.</description>
      <pubDate>Wed, 02 Mar 2005 10:09:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-on-automount-nfs-mounts/m-p/4888738#M401964</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-03-02T10:09:00Z</dc:date>
    </item>
  </channel>
</rss>

