- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Paging space in HP-Unix.
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
12-24-2008 07:33 PM
12-24-2008 07:33 PM
Paging space in HP-Unix.
How to increase the paging space in HP-Unix.
Pls guide me something about this....
Thanks in Advance,
Regards,
Unixguy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2008 07:44 PM
12-24-2008 07:44 PM
Re: Paging space in HP-Unix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2008 08:12 PM
12-24-2008 08:12 PM
Re: Paging space in HP-Unix.
Please refer to
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=89925
This will answers most of your queries
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2008 08:15 PM
12-24-2008 08:15 PM
Re: Paging space in HP-Unix.
http://docs.hp.com/en/B2355-90672/ch06s03.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2008 05:12 PM
12-25-2008 05:12 PM
Re: Paging space in HP-Unix.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2008 08:13 PM
12-25-2008 08:13 PM
Re: Paging space in HP-Unix.
Steps to Extend the swap space in HPUX,
step1:-
vgdisplay -v /dev/vg0X -> to check if you have Free disk space if (Yes)
step2:-
Create the logical volume for your secondary swap:
Example
# lvcreate -L 128 /dev/vgxx
Verify the logical volume:
# lvdisplay /dev/vgxx/lvolxx
Use SAM to declare your new secondary swap or use the command line:
# swapon /dev/vgxx/lvolxx
Verify it has been added in "/etc/fstab" when using SAM, or add it manually when using the command line.
Example:
/dev/vgxx/lvolxx . swap defaults 0 0
Thx,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2008 11:38 PM
12-25-2008 11:38 PM
Re: Paging space in HP-Unix.
Would like to correct u a bit.
The LV for swap use must have the contiguous and the strict policies set to it.
That is for an LV that u want to use as a swap for the HP-UX system , must be created with the -c y and -s y options while creating the LV and then we can swapon that LV and/or make an entry in /etc/fstab fpr that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2008 11:45 PM
12-25-2008 11:45 PM
Re: Paging space in HP-Unix.
NOTE that i put -c y on the earlier reply.
The Contiguous and strict policies are reqd by a swap space taking into the following things in consideration:
1) the spcae is contiguous means contiguous PEs are made available to the swap LV that we are creating and that one swap LV as created cannot span disks.
2) the strict policy means that the mirror of this LV will surely be on other PV in the VG.
3)the swap space if this is a primary swap also functions as the dump space where no fileystem exists and at the system reboot following a crash of the system the crash data is read from this LV and the same is copied onto the crash directory as defined by us .. which is by default /var/adm/crash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2008 03:37 AM
12-26-2008 03:37 AM
Re: Paging space in HP-Unix.
<< Many Thanks for your reply<<
My reply to pertainting to Increase the swap space.
Mentioned earlier
Use SAM to declare your new secondary swap or use the command line:
Thx,
Johnson