- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: bdf command
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-18-2009 03:13 PM
тАО02-18-2009 03:13 PM
bdf command
I have created logical volum, new file system and mount the file system on hp-ux 11i.
But when i use command bdf, its not listing the above mounted file system.
Can any one help me what i need to do for this.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-18-2009 03:17 PM
тАО02-18-2009 03:17 PM
Re: bdf command
Do a
# cat /etc/mnttab
to see what file systems are mounted. If you new one is not listed, then it isn't mounted and you need to try mounting it again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-18-2009 07:46 PM
тАО02-18-2009 07:46 PM
Re: bdf command
Note: If you created a mountpoint directory, then mounted the new lvol (but missed the error message), you can store files in that mountpoint and it will look like a mountpoint. To see if this happened, run this command:
bdf /mountpoint
If the right hand column shows "/" then nothing was mounted and you were storing files in an ordinary directory that is in the / volume. Now if you mount the new lvol, the old files will seem to disappear but they are still there and occupy space on the / volume. Be sure to clean up the old files before moiunting the new lvol.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-18-2009 08:34 PM
тАО02-18-2009 08:34 PM
Re: bdf command
Are you able to see the content of your new mount point or are you able to access your mount point.
go to your mount point and do bdf. like this
$cd /newmount_point
$pwd
$bdf .
Post this output
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-19-2009 01:33 AM
тАО02-19-2009 01:33 AM
Re: bdf command
Check
bdf /Mount Point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-19-2009 04:43 AM
тАО02-19-2009 04:43 AM
Re: bdf command
Thank you all for the reply.
I checked below things.
1. cat /etc/mnttab
Not listing the /opt/mqm mounted file system.
2. cd /opt/mqm and bdf ./
Its showing opt filesystem space only.
3. mount command also not listing the /opt/mqm file system.
4. bdf /dev/vg01/optmqm
Filesystem kbytes used avail %used Mounted on
/dev/vg01/optmqm 540672 1237 505721 0%
5. lvdisplay /dev/vg01/optmqm
--- Logical volumes ---
LV Name /dev/vg01/optmqm
VG Name /dev/vg01
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 528
Current LE 33
Allocated PE 33
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
6. I tried mount the file system again. but the existing files are disappear after.
when i use bdf command its not listing the /opt/mqm file system
Could you please suggest any idea for this.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-19-2009 04:07 PM
тАО02-19-2009 04:07 PM
Re: bdf command
Are you using the shortcut command:
mount /dev/vg01/optmqm
If so, the problem is in fstab, not with the mount command. he reason is that you did not specify at mount point, just the device file. Normally that is completely acceptable. However, fstab is a shortcut file so that you only have to specify the source or the destination and get the rest of the mount options. First, verify that the new filesystem is valid by:
umount /dev/vg01/optmqm
then
mkdir /mnt1
mount /dev/vg01/optmqm /mnt1
bdf /mnt1
That should show your lvol mounted at /mnt1 and confirms that there is an error in fstab.
The fstab format is:
source /mountpoint type options fsck backup
where:
source = devicefile
/mountpoint requires a leading slash
type = vxfs (or whatever fs you are using)
backup = virtually obsolete
fsck = pass number
(man fstab)
Bill Hassell, sysadmin