Código:
[christian@ociomax ~]$ rpm -qf $(whereis service)
initscripts-8.11.1-1
[christian@ociomax ~]$
Es decir que el comando "service" pertenece al paquete initscripts.
Código:
[christian@ociomax ~]$ service
-l: service: command not found
[christian@ociomax ~]$ su -
Password:
[root@ociomax ~]# service
Usage: service < option > | --status-all | [ service_name [ command | --full-restart ] ]
[root@ociomax ~]#
Si te das cuenta, como usuario normal no me deja usar el comando service. Pero si ejecuto "su -" e introduzco el password de root, sí puedo usar service.
Código:
[root@ociomax ~]# service httpd status
Se está ejecutando httpd (pid 26172 26171 26170 26169 26168 26167 26166 26165 26160)...
[root@ociomax ~]# service httpd stop
Parando httpd: [ OK ]
[root@ociomax ~]# service httpd start
Iniciando httpd: [ OK ]
[root@ociomax ~]#
Un par de ejemplos del uso de service.
(Recuerda que también puedes usar la herramienta gráfica system-config-services.)