- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ps full name process
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
Discussions
Discussions
Discussions
Forums
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
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-17-2006 12:46 AM
тАО03-17-2006 12:46 AM
I have some process that are so long and when I command ps I have not get the full name.
In example:
ps -ef|grep ops
I get this:
/opt/oracle/pkg03/merca02/app/openprocess/OPSchedule/bin/opspse
But the real proces name is:/opt/oracle/pkg03/merca02/app/openprocess/OPSchedule/bin/opspserver
So I need show the full name with ps command.
┬┐How can i do it in HP-UX?
Tnaks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 12:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 12:55 AM
тАО03-17-2006 12:55 AM
Re: ps full name process
eg: ps -efx | grep ops
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 12:57 AM
тАО03-17-2006 12:57 AM
Re: ps full name process
Hello,
If you are using a vt100 emulation (or some other test based screen), set your screen width to 132 instead of the default(80).
This has worked for me in the past........
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 12:58 AM
тАО03-17-2006 12:58 AM
Re: ps full name process
# UNIX95= ps -eo pcpu,pid,args | grep ops
0.0 25739 /app/ops/xos/bin/opspserver
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 01:04 AM
тАО03-17-2006 01:04 AM
Re: ps full name process
Use the swtich "x" along with ps -ex to find more details.
or otherwise, use
UNIX95= ps -eo pcpu,pid,args | grep ops
HTH,
Prabu.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 02:07 AM
тАО03-17-2006 02:07 AM
Re: ps full name process
Note also that if you are using grep to locate a process by name, use ps to find the process by name. It is always accurate and works on earlier versions of HP-UX:
UNIX95=1 ps -f -C opspserver
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 02:54 AM
тАО03-17-2006 02:54 AM
Re: ps full name process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2006 03:22 AM
тАО03-17-2006 03:22 AM
Re: ps full name process
in HP-UX 11i:
ps -efx|grep ops
add 'x' option.
See man for furhet info.
HTH,
Art