To Check Which Service is Running at Present in System what
is the Command?

Answers were Sorted based on User's Feedback



To Check Which Service is Running at Present in System what is the Command?..

Answer / waleed badr

service --status-all
ps -ef ---> is used to check what processes are running at
present in the system

Is This Answer Correct ?    29 Yes 3 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / chandbashashaik

$ ps will let you know wat is the process running at present

Is This Answer Correct ?    27 Yes 6 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / mcmarc

chkconfig --list

Is This Answer Correct ?    15 Yes 2 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / peroz

ps -aux

Is This Answer Correct ?    4 Yes 2 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / dave_chamoli82

ps is used to view the process not the service. To view the
current service running at present in system is
# service --status-all

Is This Answer Correct ?    3 Yes 1 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / jayakumar .b

# service --status-all

# chkconfig --list

Is This Answer Correct ?    2 Yes 0 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / anand

$top

Is This Answer Correct ?    4 Yes 3 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / shanu

# service --status-all | grep -i "running"
crond (pid  3974) is running...
cupsd (pid  3895) is running...
gpm (pid  3965) is running...
hald (pid 3767) is running...
hidd (pid 3815) is running...
hpiod (pid 3864) is running...
hpssd (pid 3869) is running...

or else

to check if what services are set to run(or on) by default(at system boot)

use the below.
1.check the current run level using
# runlevel
N 5
2.check the list of services set to run at boot time
using
# chkconfig --list > /tmp/service.log

//the output will look like this
yum-updatesd    0:off   1:off   2:on    3:on    4:on    5:on    6:off

3.check the same using awk command according to your current run level
awk  '{if ($5 == "3:on") print $1}' /tmp/service.log

Thanks :)

Is This Answer Correct ?    1 Yes 0 No

To Check Which Service is Running at Present in System what is the Command?..

Answer / rawoof

hello am rawoof now am learning linux redhat 5 versions .i
have some important interviews questons on linux with
answers plz help me aand plz send it my
id:rawoof_md85@yahoo.co.in

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

why is the tar command used?

0 Answers  


You want to copy the user’s home directories to a new location. Which of the following commands will accomplish this?

0 Answers  


How do I check cores in linux?

0 Answers  


in unix how to change old name to new name

7 Answers   Google,


How do you run command every time a file is modified?

0 Answers  






what are the Linux-based security tools?

4 Answers  


What are two functions the move mv command can carry out?

0 Answers  


Explain the working of command grouping?

0 Answers  


What are the options of wc command?

0 Answers  


What does execute mean in linux?

0 Answers  


What command do you type to find help about the command who?

0 Answers  


what is work of dns

3 Answers   HCL,


Categories