I’ve had to do more work on one of our Ubuntu servers again recently, and without Ubuntu’s incredible GUI to fall back on, I’m seriously shocked at just how much Linux knowledge I’ve lost since moving away from the platform so many years ago already.
Anyway, today’s quickfire post is simply to remind you how to pull up a list of all the services currently running on your Ubuntu machine via a terminal command line. This is of course pretty useful in the event that you actual want to interact with a service that you suspect should be running in the background…
service --status-all
This will list all services currently running (and located in the init.d) on your system. Remember, it is expected that all services should as a minimum respect the start and stop functionalities, meaning that you can use the service names garnered above in order to control what services are currently running on your installation.
See, bloody easy. You’d have expected me to remember that in the first place, now wouldn’t you? :P
You might also enjoy:
-
SMS Server Tools 3 or SMS3 is a great piece of SMS Gateway open source software that allows you to send and receive short SMS messages through any number of ...
-
Installing a new software package via a command line terminal in Ubuntu Karmic Koala (and basically all the other versions preceding it) is deceptively easy ...
-
To stop a MySQL server instance on an Ubuntu linux install via the command line is as simple as entering: sudo /etc/init.d/mysql stop Alternatively, to st ...
-
A quick way to stop or start a particular process running as a system daemon on your Ubuntu box is to make use of the start-stop-daemon command. Usag ...
-
Annoyingly, Ubuntu isn't set up to all for DVD playback by default. The reason of course is that most DVDs are encrypted, region-encoded, etc. and Ubuntu si ...