- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- BDF not displaying a disk
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
09-23-2002 08:25 AM
09-23-2002 08:25 AM
Until the other day (susprise).
The problem is data seems to have gone from one of the disks.
When you do a BDF the disk isn't displayed, however you can cd to that disk, also move/copy etc files into that disk. I've looked at the fstab file and the disk is mentioned ie
/dev/vg12/disk12 /disk12 vxfs rw,suid,delaylog,datainlog 0 2
Does anybody have any idea?
Thanks
Mark
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:33 AM
09-23-2002 08:33 AM
Re: BDF not displaying a disk
Try mount -a
Any errors
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:35 AM
09-23-2002 08:35 AM
Re: BDF not displaying a disk
# cd /etc
# rm mnttab
# /etc/mount -a
# bdf
Does it now appear in "bdf" output ? Another possible explanation to this is /disk12 is located in the root (/) filesystem. To test ..
# mkdir /test
# mount /dev/vg12/disk12 /test
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:40 AM
09-23-2002 08:40 AM
Re: BDF not displaying a disk
Since you are not able to view the mounted disk volume name in your bdf, i believe there is a mount problem of the disk.
Try mounting as suggested last here, as
mount -a
If you still do not see the disk, do a
vgdisplay -v /dev/vg12
This will give you the disk names at the bottom. Check if your disk name is listed. If it is there do a
pvdisplay -v /dev/dsk/c1t0d0 (disk number)
If you get results here, there is no problem with your disk.
add this entry in place of your current fstab entry for the disk.
/dev/vg12/disk12 /disk12 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
Then mount again using
mount -a
You should not get any error after mount command and should be able to see it. Else display your mount error.
Hope this helps.
Regards,
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:53 AM
09-23-2002 08:53 AM
Re: BDF not displaying a disk
Do I have to type mount -a disk12 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:53 AM
09-23-2002 08:53 AM
Re: BDF not displaying a disk
Do I have to type mount -a disk12 ?
Also the disk is not mentioned in the mnttab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 08:55 AM
09-23-2002 08:55 AM
Re: BDF not displaying a disk
'mount -a' causes all filesystems defined in 'etc/fstab' to attempt to be mounted. If they are already mounted, that's so noted. If they cannot be mounted, (e.g. because of illegal options), then that is so noted.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:04 AM
09-23-2002 09:04 AM
Re: BDF not displaying a disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:16 AM
09-23-2002 09:16 AM
Re: BDF not displaying a disk
vxfs mount: /dev/vg12/disk12 no such device
Then when I do vgdisplay -v /dev/vg12
vgdisplay: Volume group not activated.
vgdisplay: Cannot display volume group "/dev/vg12".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:21 AM
09-23-2002 09:21 AM
Re: BDF not displaying a disk
# vgchange -a y /dev/vg12
Do you see any error ? So it looks like my 2nd guess is right .. you are not accessing /dev/vg12/disk12 mounted on /disk12 as you might thought. The current /disk12 is residing on the root filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:22 AM
09-23-2002 09:22 AM
Re: BDF not displaying a disk
You can't mount a filesystem to a logical volume in an inactive volume group. To activiate the volume group do:
# vgchange -a y /dev/vg12
Then do:
# mount -a
Based on you original post, you will probably find your copied/moved files in the '/disk12' directory in the *root* mountpoint ('/').
These files will *disappear* if/when you successfully mount '/disk12'
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:41 AM
09-23-2002 09:41 AM
Re: BDF not displaying a disk
Thanks again
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 09:48 AM
09-23-2002 09:48 AM
Re: BDF not displaying a disk
No, the files wou't be permanently lost, just invisible. When you mount /disk12, the files that are currently in root's mountpoint in the directory /disk12 will not be visible. To expose them, unmount /disk12.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 10:02 AM
09-23-2002 10:02 AM
Re: BDF not displaying a disk
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 10:04 AM
09-23-2002 10:04 AM
Re: BDF not displaying a disk
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 05:41 AM
09-24-2002 05:41 AM
Re: BDF not displaying a disk
y # vgchange -a y /dev/vg12
vgchange: Warning: Couldn't attach to the volume group physical volume "/dev/dsk
/c3t14d0":
The path of the physical volume refers to a device that does not
exist, or is not configured into the kernel.
vgchange: Warning: couldn't query physical volume "/dev/dsk/c3t14d0":
The specified path does not correspond to physical volume attached to
this volume group
vgchange: Warning: couldn't query all of the physical volumes.
vgchange: Couldn't activate volume group "/dev/vg12":
Quorum not present, or some physical volume(s) are missing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 05:50 AM
09-24-2002 05:50 AM
Re: BDF not displaying a disk
# vgchange -a y -q n /dev/vg12
Does that work ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 06:05 AM
09-24-2002 06:05 AM
Re: BDF not displaying a disk
ioscan -fnC disk
to see the status of the disk. The disk is the one you found with:
vgdisplay
BR,
Jannik