- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to have multiple users share an image
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-21-2002 05:27 AM
03-21-2002 05:27 AM
How to have multiple users share an image
Disregarding the use (or abuse) of this workstation, is there is a way to make any part of an image shareable so not everyone gets this much RAM allocated to them?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 09:54 AM
03-21-2002 09:54 AM
Re: How to have multiple users share an image
I am not qute sure I understand what you mean,
but I think this may be an answer:
. The more of the CAD application that is
executed in functions that are part of
shared libraries the less memory each
user will have to occupy.
This means that when two users start the
same program, only one copy of functions that
are in shared libs needs to be in memory.
To what extent your applications uses shared
libs is difficult to say. Shared libs may
be runtime-libs that comes with HP-UX and it
may be shared libs made by the software vendor.
For various reasons some software vendors
prefer not to use shared libs.
You will see what shared libs are used
by using the chatr command
Example:
chatr executable
will among other things give a list of the
shared libs used by this executable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 10:26 AM
03-21-2002 10:26 AM
Re: How to have multiple users share an image
You can use a tool like glance to get more information on the memory segments that a process has attached.
I'd say your options are going to be either complain to the application developer about the amount of memory used, or install more memory.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 10:51 AM
03-21-2002 10:51 AM
Re: How to have multiple users share an image
Since all of the users are effectively running the CAD app on the C3600, it's resources are going to dwindle with each additional user.
I know some CAD software licenses prohibit this type of activity just because of this performance issue, as well as they way they license the app to each 'seat' using it.
Check with the Software Vendor for their recommendations on how to avoid (1) the resource issues you have, and (2) any potential licensing issues resulting from this type of usage.
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 11:05 AM
03-21-2002 11:05 AM
Re: How to have multiple users share an image
You can run the chatr command on the executable to confirn that it a shared executable and to what degree. I suspect that the application is already shared text and uses shared libraries. You need to look at the page out's via vmstat. If pageout's are occurring then your only realistic option is to add memory to your box. The good news is that 3rd-party memory is available and it is significantly less expensive than the 'real' thing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 11:58 AM
03-21-2002 11:58 AM
Re: How to have multiple users share an image
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 03:50 PM
03-21-2002 03:50 PM
Re: How to have multiple users share an image
However, some vendors, in an effort to put-off going to 64-bits (anyone remember the old Fram oil filter commercials?-) have compiled their programs with the magic options to get upwards of 3GB of DATA. To do this, they have to put some data in the quadrant normally used for TEXT. This means that the TEXT quadrant can no longer be shared.
I cannot recall if the shared libs used by such a program would also behave that way. I would not be surprised to find-out that they did.
The "fix" is to get the 32-but-should-be-64-bit CAD program compiled for 64 bit. Then the TEXT segment can go back to being shared.
This presumes a 32-bit application running under HP-UX 11 or later...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:16 PM
03-21-2002 04:16 PM
Re: How to have multiple users share an image
One thing that I wondered about 'top'is even though each process shows that it is using 150Mbytes of RAM, if memory is shared between processes, then 'top' maybe be double counting. I mean if you took each instance of the program individually, it would appear that each one has this much RAM but is it possible that this number includes the shared portion just counted again? As Mr. Gillard pointed out, I could use glance to see which memory segments are being attached. I would appreciate comments on this if you have the time.
Thanks