- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: bdf on automount NFS mounts
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 07:39 AM
03-01-2005 07:39 AM
I get usage for mounted NFS mounts. I tried using following
bdf -t nfs
bdf /nfs/[a-zA-Z]*
bdf /nfs/"some_host_names"/[a-zA-Z]*
automounts are served by nis map and looks like follows.
/nfs -hosts -rw,soft,nosuid
With above approach I do not get bdf for all available NFS mounts. How do I address this??
Thank you in Advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 08:01 AM
03-01-2005 08:01 AM
Re: bdf on automount NFS mounts
for i in list of automount points
do
cd ${i}
bdf .
done
bdf doesn't have the capability to force an automount point to mount as far as I know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 08:01 AM
03-01-2005 08:01 AM
Re: bdf on automount NFS mounts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 08:03 AM
03-01-2005 08:03 AM
Re: bdf on automount NFS mounts
The trick would be to do something to make the systems come current first, then run your bdf commands.
Something along the lines of...
for i in [some_host_names]
do
[if ! -r /nfs/$i/junkfile ]; then
echo couldn't activate server $i
exit 1
fi
bdf /nfs/$i
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2005 08:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 02:04 AM
03-02-2005 02:04 AM
Re: bdf on automount NFS mounts
blal pointed hat out. Also Patrcik and AC's pointers were also helpful.
Finally I am doing bdf -t nfs.
Points coming.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2005 02:09 AM
03-02-2005 02:09 AM