Přejít na menu

How to test rc.local file

Správa článků

Vyhledávání Vyhledávání
29.10.2014 21:45
,
Počet přečtení: 765

How to test rc.local file, which is executed after system startup.

Simulate the run

sudo /etc/init.d/rc.local start

Debug the real execution after startup

Add this code to the begining of your /etc/rc.local file:

# stdout redirect
exec 2> /tmp/rc.local.log      # send stderr from rc.local to a log file
exec 1>&2                      # send stdout to the same log file
set -x                         # tell sh to display commands before execution

 

Vytvořil 29. října 2014 ve 21:48:40 mira. Záznam nebyl nikdy upravován.


Diskuze ke článku

Vložení nového komentáře
*
*
*