informatica:linux:runlevel
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| informatica:linux:runlevel [2015/04/13 20:19] – external edit 127.0.0.1 | informatica:linux:runlevel [2019/12/04 09:21] (current) – osk-k-k-k | ||
|---|---|---|---|
| Line 28: | Line 28: | ||
| exit $? | exit $? | ||
| </ | </ | ||
| + | |||
| + | Damos permisos de ejecución: | ||
| + | # chmod +x / | ||
| Añadimos el servicio: | Añadimos el servicio: | ||
| Line 43: | Line 46: | ||
| sendmail | sendmail | ||
| + | | ||
| + | Para activar un servicio: | ||
| + | chkconfig --list rngd | ||
| + | rngd | ||
| + | |||
| + | chkconfig rngd on | ||
| + | |||
| + | chkconfig --list rngd | ||
| + | rngd | ||
| + | |||
| + | | ||
| ===== Debian ===== | ===== Debian ===== | ||
| + | |||
| + | < | ||
| + | #! /bin/bash | ||
| + | |||
| + | # Required-Start: | ||
| + | # Required-Stop: | ||
| + | # Default-Start: | ||
| + | # Default-Stop: | ||
| + | |||
| + | case " | ||
| + | start) | ||
| + | |||
| + | runuser usuario -c " | ||
| + | |||
| + | ;; | ||
| + | |||
| + | stop) | ||
| + | runuser usuario -c " | ||
| + | |||
| + | ;; | ||
| + | *) | ||
| + | echo $" | ||
| + | exit 1 | ||
| + | esac | ||
| + | exit $? | ||
| + | </ | ||
| + | |||
| Copiar el ejecutable en /etc/init.d | Copiar el ejecutable en /etc/init.d | ||
informatica/linux/runlevel.1428956385.txt.gz · Last modified: (external edit)
