- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Increase Page Size
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
09-09-2008 09:34 PM
09-09-2008 09:34 PM
Increase Page Size
How do we increased HPUX Page Size?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 09:44 PM
09-09-2008 09:44 PM
Re: Increase Page Size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:25 PM
09-09-2008 10:25 PM
Re: Increase Page Size
# lvcreate -C y -r n -L 4096 -n lvolswap /dev/vg00
# swapon -p 0 /dev/vg00/lvolswap
# echo "/dev/vg00/lvolswap ... swap pri=0 0 0" >> /etc/fstab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 11:05 PM
09-09-2008 11:05 PM
Re: Increase Page Size
I have read from
http://h20331.www2.hp.com/Hpsub/cache/286515-0-0-225-121.html .
But I don't understand about
To change the page size for NX use the "chatr +pd 4M exec_name" where exec_name is:
$UGII_BASE_DIR/ugii/ugraf
$UGII_BASE_DIR/ugii/uglibs/*.sl (expand *.sl for each library)
$UGII_BASE_DIR/ugii/uglibs/XXX/libgraphics_driver.sl (where XXX is ogl, xsb or xwi).
What is the value of $UGII_BASE_DIR?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 11:13 PM
09-09-2008 11:13 PM
Re: Increase Page Size
if yes then
This should be the install dir for NX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2008 06:32 AM
09-10-2008 06:32 AM
Re: Increase Page Size
The chatr line you show below is simply setting a hint in the binary such that when the kernel starts the application, it knows to set a hint in the Data object (+pd means data) that 4Mb translations are preferred instead of the system default hint from the vps_pagesize tunable [man 5 vps_pagesize is a good read on this concept, by the way]. When a fault occurs, the kernel uses this heuristic to make an attempt to get physical memory beyond the raw fault requirements based on the heuristic so that a single translation can be used for a wider range of the data set... increasing the likelihood that the translation cache layer of the system (TLB) can hold all the translations of the working set.
This is orthogonal to the $UGII_BASE_DIR -- that's simply a file path for the purpose of the example, it doesn't play into the chatr or variable page size hint.
So in short, man chatr / man vps_ceiling / man vps_chatr_ceiling should give you all the information you need.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 02:13 AM
09-11-2008 02:13 AM
Re: Increase Page Size
How can I get the NX source Program?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 02:52 AM
09-11-2008 02:52 AM
Re: Increase Page Size
http://www.plm.automation.siemens.com/en_us/products/nx/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 05:51 AM
09-11-2008 05:51 AM
Re: Increase Page Size
I think it is coming in Sep 08 release as a new kernel parameter as Don mentioned.