- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Boot problem
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
05-17-2005 12:43 AM
05-17-2005 12:43 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 12:48 AM
05-17-2005 12:48 AM
Re: Boot problem
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 12:50 AM
05-17-2005 12:50 AM
Re: Boot problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 12:54 AM
05-17-2005 12:54 AM
Re: Boot problem
1. Reboot the machine
2. Halt it at PDC prommpt ( During initial startup of the machine it prompt you to halt the system )
3. After you get the PDC prompt:
Main menu> boot
Interact with IPL> yes
ISL> hpux -is
This will take you to single user mode.
If it is a IA machine then you go into EFI shell. There similarly you can go to hpux prompt:
hpux> boot hpux -is
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:15 AM
05-17-2005 01:15 AM
Re: Boot problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:16 AM
05-17-2005 01:16 AM
Re: Boot problem
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:20 AM
05-17-2005 01:20 AM
Solution# mount /dev/vg00/lvol7 /usr
Now you should have /usr available, and vi available, so you can edit your /etc/fstab. The standard /usr fstab entry should look like:
/dev/vg00/lvol7 /usr vxfs delaylog 0 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:23 AM
05-17-2005 01:23 AM
Re: Boot problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:24 AM
05-17-2005 01:24 AM
Re: Boot problem
Thanks - I just came to that same conclusion! Duh.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 01:31 AM
05-17-2005 01:31 AM
Re: Boot problem
you can compare two output and probably judge which lv belongs to /usr.
1. # cat /etc/fstab
2. # cd /dev/vg00/dsk
# ll
Just see what lv you have created in vg00 and which one is missing in fstab.
Hope that works.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 02:40 AM
05-17-2005 02:40 AM
Re: Boot problem
In single use mode, if you know the LV name where /usr resides, then you can redirect that to /etc/fstab, something like:
echo '/dev/vg00/lvol7 /usr vxfs delaylog 0 2' >> /etc/fstab
Then use "mount -a" command to mount it.
Hope that helps,
Regards