Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I find the linux version?

1142


Is cmake a compiler?

1094


What is Data Command?

1275


What is mkdir m in linux?

1088


What are linux commands?

1083


What is DISM command?

1057


How do I know my linux shell version?

1156


How do I run a shell script?

1017


Why makefile is used in linux?

1165


You read an article that lists the following command: dd if=/dev/fdo bs=512 of=/new what does this accomplish?

1073


What does touch do in linux?

1031


What is finger in networking?

1040


What language is clang written in?

951


What make install does?

994


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

1019