- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Broken fstab, unable to boot
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
11-19-2002 08:54 AM
11-19-2002 08:54 AM
In the fstab, the entry for the /usr (mounted on /dev/vg00/lvol4) is not correct. Know we are not able to boot the machine.
How to repair the fstab ?
Or how to boot a rescue shell and mount a LVM ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 08:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 09:00 AM
11-19-2002 09:00 AM
Re: Broken fstab, unable to boot
you can at the prompt:
vgchange -a vg00
mount /dev/vg00/lvol7 /usr
mount /dev/vg00/lvol8 /var
and procede to edit the fstab with vi.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 09:00 AM
11-19-2002 09:00 AM
Re: Broken fstab, unable to boot
Just boot the server in lvm maintenance mode (hpux -lq), activate vg00, mount lvol3 (/) onto a temporary mountpoint (eg. mkdir tmp_mnt) then cd /tmp_mnt/etc and take a look at /etc/fstab and try to rebuild it. You wont be able to use vi (need /usr) but you can use echo >> to rebuild it and then reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 09:17 AM
11-19-2002 09:17 AM
Re: Broken fstab, unable to boot
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 09:27 AM
11-19-2002 09:27 AM
Re: Broken fstab, unable to boot
If /usr was corrupt then you could use echo to rebuild the fstab file line by line (echo ... >>/etc/fstab)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 09:23 AM
11-20-2002 09:23 AM
Re: Broken fstab, unable to boot
Kind regards,
Robert Thorneycroft
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 09:30 AM
11-20-2002 09:30 AM
Re: Broken fstab, unable to boot
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 09:37 AM
11-20-2002 09:37 AM
Re: Broken fstab, unable to boot
you can use mount to mount what you can, then
mount -p > /etc/fstab
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 02:10 PM
11-20-2002 02:10 PM
Re: Broken fstab, unable to boot
Only the fstab was broken, /usr was ok. Machine is up again. Thanks for the help.