- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /var not mounted
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-07-2003 05:15 AM
03-07-2003 05:15 AM
/var not mounted
I did a "bdf" ,the result shows other files mounted but '/var' only not mounted.
sam could not run because of this problem.I guess it is corrupted,how do resolve this without restoring from backup? I chcked /etc/fstab and /etc/mnttab and it's not there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:18 AM
03-07-2003 05:18 AM
Re: /var not mounted
mount /dev/vg00/lvol? /var
and see what it says (you'll need to supply the lvol number)
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:19 AM
03-07-2003 05:19 AM
Re: /var not mounted
if so, htat is why it wont mount.
are you sure it is a separate file system (silly question you might think, but....)
what lvols are listed for vg00 in fstab?
and what are in /dev/vg00?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:19 AM
03-07-2003 05:19 AM
Re: /var not mounted
Do you still have a logical volume for it? If so, I would suggest you do this :
fsck /dev/vg00/lvol# {logical volume of /var}
{include the mount line in your /etc/fstab}
mount /var
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:22 AM
03-07-2003 05:22 AM
Re: /var not mounted
If you don't have /var in your /etc/fstab it will never get mounted at boot. Either you don't have /var specified as a specific FS or someone deleted is from there.
Try to go into /var/adm or so, and see if there is any data in there. If not somone delete /var, else /var never has been a seperated FS.
I have /var mounted on /dev/vg00/lvol7, but don't believe it's as standard, just try to see which fs is missing above the lvol3.
Please check and see if you ever had a FS /var
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:38 AM
03-07-2003 05:38 AM
Re: /var not mounted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 05:58 AM
03-07-2003 05:58 AM
Re: /var not mounted
If you found out which volume was mounted at /var, you can still solve this without any problem.
fsck -m /dev/vg00/lvol7 # Assuming it is lvol7
If you get an error of need corrected, you can initiate a :
fsck -y /dev/vg00/lvol7
To repair any errors on /var
After that : mount /dev/vg00/lvol7 /var
And better to also add it into your /etc/fstab.
Good luck
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 06:02 AM
03-07-2003 06:02 AM
Re: /var not mounted
A best way to resolve the FS issues is to boot in single user mode, repair all FS with 'fsck' command and boot in multi user mode.