Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Services running 2

Status
Not open for further replies.

telande35

Programmer
Nov 27, 2004
24
0
0
BE
Hey,

How can I get a list with all running services on a UNIX SCO Openserver 5.

Thanks in advance
Nic
 
Take a look here:
ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/binaries/osr/

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
I was unable to get to that FTP site without a password, but maybe it's a local problem with my network.

You can view system-wide processes using the "ps" command and a variety of options. Check out the man-page for "ps".
Examples:
# ps -ef|more
# ps -ale|more

If, instead, you want to know which TCP services are enabled, try this:
# netstat -a|grep LISTEN

This should produce a list of services for which your system will accept connections. These are primarily controlled by the /etc/inetd.conf and /etc/services files.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top