- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: can't mount /usr in single user mode
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
08-04-2003 11:49 AM
08-04-2003 11:49 AM
/sbin/fs/vxfs/mount -r /dev/vg00/lvol4 /usr
vxfs mount: Cannot deduce character device name for /dev/vg00/lvol4
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 11:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 11:56 AM
08-04-2003 11:56 AM
Re: can't mount /usr in single user mode
how can i recreate the rlvol#?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 11:58 AM
08-04-2003 11:58 AM
Re: can't mount /usr in single user mode
I agree with Marty - verify that /usr is indeed lvol4. Check your /etc/fstab.
If you're truly in single-user mode then run mount -a to mount everything & have the system pick up the info from /etc/fstab
Also, why are you mounting it read-only?
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:14 PM
08-04-2003 12:14 PM
Re: can't mount /usr in single user mode
1) Note the major # (should be 64) & minor # of rlvol4b - should be like 0x000004 or so
2) Run the mknod command as follows
mknod lvol4b b 64 0x000004 # or whatever the minor number of rlvol4b is.
But seeing that rlvol4b entry leads me to believe somebody typo'd the original mknod command & didn't space between the lvol name & the device type "b" or block device.
That might explain *why* there's no block device for the lvol4 entry.
Again, what does /etc/fstab have for the /usr entry?
And has this system ever been successfully booted such that /usr comes up mounted?
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:32 PM
08-04-2003 12:32 PM
Re: can't mount /usr in single user mode
The 'b' suffix suggests that you did a 'lvsplit' (perhaps to do a backup). If you are truly missing '/dev/vg00/lvol4' and have only 'dev/vg00/lvol4b' then I would ask if you in fact did an 'lvsplit' followed by an 'lvmerge' with the destination and source paths reversed? (See the man pages for 'lvmerge').
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 03:06 PM
08-04-2003 03:06 PM
Re: can't mount /usr in single user mode
Never thought about an lvsplit gone bad.
Learn something new every day.....
Thx,
Jeff