- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Doubts in HPUX.
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
07-19-2007 06:25 PM
07-19-2007 06:25 PM
I have some doubts in HPUX, kindly send the solution for my doubts.
1. In single user mode, what are all the filesystem are mounted?
2. Kernel update procedure for 11.11
3. While creating volume group, in mknod command after 0x what I have to give, pls explain it.
4. Is there any difference between JFS & VXFS? (or) both are same?
5. Already in one server 10 harddisks are there, if connect 2 new harddisks How I can find it?
6. If I have two ethernet cards, How I can set the ip address for secondary ethernet card using set_parms?
7. How we can find one server in cluster & VPAR/NPAR environment?
Regards,
Sudhakaran.K
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 06:34 PM
07-19-2007 06:34 PM
Solution1) only / and /stand are mounted; only vg00 is activated;
run "mount -a" to get all vg00 lvols mounted
2) it depends what you want to "update"
3) must be unique; best practice is to use the same number as the VG (vg01 => 0x010000)
5) "in" one server or connected to the server?
run "ioscan -fnCdisk" before and after and compare; if added online, there are no device files for the new disks
6) this works only with 11.31; but you can use SAM
7) Did you lost it?
Don't understand the question, sorry.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 06:47 PM
07-19-2007 06:47 PM
Re: Doubts in HPUX.
My seventh question is:
7) I am logging to one server, In that server how we can find whether that server configured in cluster environment (or) VPAR/NPAR environment?
Regards,
Sudhakaran.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 06:53 PM
07-19-2007 06:53 PM
Re: Doubts in HPUX.
JFS=VxFS,
"Beginning with HP-UX 10.0, Hewlett-Packard began providing a Journaled File System (JFS)
from VERITAS Software Corporation known as the VERITAS® File System⠢ (VxFS®)"
7)
may be some complex, but
if "cmviewcl" gives results, you are in a cluster;
if "vparstatus" gives results, you are in a vPar config
if both commands return results, you are in a clustered vPar.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2007 03:01 AM
07-20-2007 03:01 AM
Re: Doubts in HPUX.
Remember - that is a HEX number - so - convert your VG to hex.
IE:
for vg05 it would be 0x050000
for vg10 it would be 0x0a0000
Why?
Look at your kernel parameter maxvgs.
Say it is 80.
You have been all along creating the minor number with the first digits being the same a s the vg number...
So, you try to make say vg51
Guess what - it will fail - as 0x51000 equates to 81 in decimal - and your maxvgs is 80!
Rgds...Geoff