- Process en cour
ps -eF | less
- Rechercher un process
ps -eF | grep nomduprocess
1) Avant CentOS 7 et Debian 8
- Tout les services
sudo service --status-all
- Voir un service status/stop/start/restart
sudo service nomduservice status/stop/start/restart
2) Après CentOS 7 et Debian 8
- Tout les services
systemctl list-units --type=service ou systemctl list-unit-files
- Voir un service status/stop/start/restart
systemctl status/stop/start/restart nomduservice
- Activer/désactiver un service au démarrage
systemctl enable/disable nomduservice