- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sar command
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-11-2005 06:59 AM
03-11-2005 06:59 AM
sar command
can anyone help me to know the meaning of this values?
# sar -v 2 10
HP-UX IAS001 B.11.11 U 9000/800 03/11/05
20:44:26 text-sz ov proc-sz ov inod-sz ov file-sz ov
20:44:28 N/A N/A 307/25640 0 1042/27408 0 4019/44011 0
20:44:30 N/A N/A 307/25640 0 1042/27408 0 4020/44011 0
20:44:32 N/A N/A 306/25640 0 1040/27408 0 4014/44011 0
20:44:34 N/A N/A 306/25640 0 1041/27408 0 4021/44011 0
20:44:36 N/A N/A 307/25640 0 1041/27408 0 4020/44011 0
20:44:38 N/A N/A 307/25640 0 1042/27408 0 4026/44011 0
20:44:40 N/A N/A 306/25640 0 1042/27408 0 4023/44011 0
20:44:42 N/A N/A 306/25640 0 1040/27408 0 4025/44011 0
20:44:44 N/A N/A 306/25640 0 1040/27408 0 4022/44011 0
20:44:46 N/A N/A 306/25640 0 1040/27408 0 4029/44011 0
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2005 07:06 AM
03-11-2005 07:06 AM
Re: sar command
text-sz (Not Applicable);
proc-sz The current-size and maximum-size of the process table;
inod-sz The current-size and maximum-size of the inode table (inode cache);
file-sz The current-size and maximum-size of the system file table;
text-ov (Not Applicable);
proc-ov The number of times the process table overflowed (number of times the kernel could not find any available process table entries) between sample points;
From the man page.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2005 11:26 AM
03-11-2005 11:26 AM
Re: sar command
Can I know this with this command?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2005 06:02 AM
03-15-2005 06:02 AM
Re: sar command
http://www.cert.org/security-improvement/implementations/i042.05.html
Running lsof with no options will likely generate a huge list of open files (depending on your system) that is too big to be useful. However, this list could help you understand what is "normal" behavior for a given system. In the day-to-day use of lsof as an intrusion detection tool, there are two options that are initially most useful; the -p and -i options. The -p option lists open files for a given process id. For example, to view init associated processes, you enter: lsof -p 1. The capital -P option instructs the tool to not convert raw port numbers to the names of the programs that they are normally associated with. The -i option allows one to just examine the Internet processes. With this option, one can examine the open ports waiting (listening) for connection attempts. This aids in detecting signs of intrusion and points out unnecessary open services.
thanks
Devesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2005 09:13 AM
03-15-2005 09:13 AM
Re: sar command
In this case, you are between 4014 and 4029 open file descriptors over the course of the execution of this sar.