Sie können Ihren Run-Level mit der Befehlszeile erhalten:
Runlevel
Aber ich denke du willst:
Update-rc.d .....
Ich habe no-ip ddns auf Kali 2.0 installiert und ausgeführt, aber wenn ich versuche, es beim Start zum Laufen zu bringen, kann ich nicht herausfinden, worauf ich das 'X' in rcX.d ändern soll?
Die Konfigurationsdatei sagt:
If you want it to run automatically when the machine is booted, then place the following script in your startup directory. (/etc/init.d/rcX.d or /sbin/init.d/rcX.d or ???) ####################################################### #! /bin/sh # . /etc/rc.d/init.d/functions # uncomment/modify for your killproc case "$1" in start) echo "Starting noip2." /usr/local/bin/noip2 ;; stop) echo -n "Shutting down noip2." killproc -TERM /usr/local/bin/noip2 ;; *) echo "Usage: $0 " exit 1 esac exit 0 ####################################################### Where the 'X' in rcX.d is the value obtained by running the following command grep initdefault /etc/inittab | awk -F: ''
Wenn ich eintrete:
grep initdefault / etc / inittab | awk -F: ''
Ich bekomme:
grep: /etc/inittab: No such file or directory
Sie können Ihren Run-Level mit der Befehlszeile erhalten:
Runlevel
Aber ich denke du willst:
Update-rc.d .....