- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: output of ps
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
07-08-2001 06:11 PM
07-08-2001 06:11 PM
output of ps
By default this output is truncated.
As per the man page of ps, the output is a subset of information stored by kernel.
Is this a tunable parameter?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2001 11:01 PM
07-08-2001 11:01 PM
Re: output of ps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2001 02:38 PM
07-14-2001 02:38 PM
Re: output of ps
the answer is "no", for the output of "ps" is cut off after
about 60 characters - you would have to write your own
ps program, to show the whole command-line for the
running processes (and I am not so confidend if the
data structure is restricted, too).
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2001 07:50 PM
07-14-2001 07:50 PM
Re: output of ps
I believe the number of chars for the proc name (and args) is a kernel data struct limitation. The ps cmd is showing all it has available to show. I am unaware (but always willing to learn) of any way to get ps to cough up any more of the proc name and args than it already does.
All the best,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2001 10:18 PM
07-15-2001 10:18 PM
Re: output of ps
In the 'ps' man page there is a statement
in regards to the kernel and I quote:
"Only a subset of the command line is saved
by the kernel; as much of the command line
will be displayed as is available.
This is not a tunable parameter in the
kernel.
The output of ps -ef is truncated
and does not display anything after
the 60th character. You can always use
some of the other options within ps
to get some further information that
is not displayed with ps -ef.
ps -ef displays all processes, but not
all information about that process.
HTH
Michael