- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- a couple of quick questions
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
10-08-2006 07:57 AM
10-08-2006 07:57 AM
Second:
When you are at the ISL, i thought you could list files in the /stand, to see what kernels you have to boot from?, can you? how?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2006 08:28 AM
10-08-2006 08:28 AM
Re: a couple of quick questions
2. ISL stand for Initial System Loader. At that point, the kernel is not loaded yet. The current kernel is /stand/vmunix and if you kernel has been modified, you probably have an old kernel /stand/vmunix.prev. Under ISL prompt you can boot to the single user mode:
ISL>hpux -is (;0)/stand/vmunix
If you want to try with old kernel
ISL>hpux -is (;0)/stand/vmunix.prev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2006 08:56 AM
10-08-2006 08:56 AM
Re: a couple of quick questions
with "listf" and "ls" you can list available utilities like old kernel.
cheers,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2006 09:02 AM
10-08-2006 09:02 AM
SolutionIt is possible to create an un-bootable mirrored disk if the first three logical volumes ('lvol1', 'lvol2' and 'lvol3') of vg00 are not mirrored as the first ones, in order. In part, older IODC firmware could address the swap logical volumes if it lay beyond 2GB.
It is simply good practice to mirror in ascending logical volume order all of vg00's logical volumes.
As for your second question, if you use 'hpux ls' you can list the contents of the '/stand' filesystem to choose the kernel that you want to boot. See the manpages for 'hpux(1M)' for more information and examples.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2006 08:30 PM
10-08-2006 08:30 PM
Re: a couple of quick questions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2006 11:41 PM
10-08-2006 11:41 PM
Re: a couple of quick questions
# vgdisplay -v vg00|awk '/LV Name/{print$NF}'|xargs -n1 -ILV echo lvextend -m 1 LV /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvsnap /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol9 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol10 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvol11 /dev/dsk/cXtXdX
lvextend -m 1 /dev/vg00/lvsnap2 /dev/dsk/cXtXdX
A colleague of mine once used a script where he collected LVs from a shell glob on /dev/vg00/l*, which resulted in an unbootable mirror disk.
As you can see the globbing uses a completely misleading collating sequence (with little tunability via LC_COLLATE)
# ls -1 /dev/vg00/l*
/dev/vg00/lvol1
/dev/vg00/lvol10
/dev/vg00/lvol11
/dev/vg00/lvol2
/dev/vg00/lvol3
/dev/vg00/lvol4
/dev/vg00/lvol5
/dev/vg00/lvol6
/dev/vg00/lvol7
/dev/vg00/lvol8
/dev/vg00/lvol9
/dev/vg00/lvsnap
/dev/vg00/lvsnap2