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
03-09-2005 07:59 PM
03-09-2005 07:59 PM
cheers
john
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 08:05 PM
03-09-2005 08:05 PM
SolutionYou should create a new LV and use as swap space.
Refer to these threads for more info:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=242275
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=58315
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 08:08 PM
03-09-2005 08:08 PM
Re: Swap
It's better you create a new swap ... can use SAM for easier way
It's troublesome to increase the size of swap
Hope this can help you.
Best Regards,
Adisuria Wangsadinata
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 08:09 PM
03-09-2005 08:09 PM
Re: Swap
Just increacing the current swapspace can't be done online. you have to reboot the system than and extend it in runlevel 1.
Beter or simpler is to make another swap file system with.
4. Create logical volume.
lvcreate -L 200 â m â n 1 swap -C y -r n /dev/vg00
in case of san disks lvcreate â L 2000 â m â n 1 â C y â r n /dev/vgswap
Watch carefuly you only can use the â m option if you have a mirror disk on the other location if not then donâ t use the â m option.
Example command creates a 200-megabyte contiguous logical volume called swap in
the vg00 volume group. The logical volume also has bad block reallocation
turned off.
See "man 1m lvcreate" for more information.
5. Then edit /etc/fstab (HP-UX 10.X, 11.X) or /etc/checklist (HP-UX 9.X)
to enable swap after each shutdown of the system.
example /etc/fstab entry:
/dev/vg00/swap ... swap pri=1 0 1 #device swap
6. Enable swap using swapon command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 08:22 PM
03-09-2005 08:22 PM
Re: Swap
Mark Syder (like the drink but spelt different)