- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sz size and RSS size difference?
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
08-01-2005 01:12 PM
08-01-2005 01:12 PM
sz size and RSS size difference?
UNIX95=1 ps -efo vsz,sz,pid,args |grep -v grep | sort -rnk 1 | more
and you know RSS size when you command glance
As I know, sz and RSS size is physical memory occupied on system.
I want to know how diffent these word is?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 01:59 PM
08-01-2005 01:59 PM
Re: sz size and RSS size difference?
from the ps man page and glance help .
SZ:
The size in physical pages of the core image of the process, including text, data, and stack space.
RSS:
The size (in KB) of resident memory for the process. This consists of text,data, stack, as well as the process' portion of shared memory regions.
Both have TEXT+DATA+STACK but the process' portion of shared memory only count in RSS and not in ths SZ.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 03:26 PM
08-01-2005 03:26 PM
Re: sz size and RSS size difference?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 07:36 PM
08-01-2005 07:36 PM
Re: sz size and RSS size difference?
RSS - total amt of physical memory that is currently occupied by this process excluding the swap space. total_pages * page_size
That's why RSS <= SZ
-Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2005 08:42 PM
08-01-2005 08:42 PM
Re: sz size and RSS size difference?
you mean sz is just physical memory size,
RSS is a mount of physical memory size.
right?