Adding a startup script to be run at bootup

来源:互联网 发布:中超球员数据库 编辑:程序博客网 时间:2024/05/21 22:22

1. Write a script. put it in the /etc/init.d/ directory.

 

2. You also have to make the file you created, FOO, executable, using
$chmod +x FOO

 

3. Lets say you called it FOO. You then run

% update-rc.d FOO defaults


You can check out
% man update-rc.d for more information. It is a Debian utility to install scripts. The option “defaults” puts a link to start FOO in run levels 2, 3, 4 and 5. (and puts a link to stop FOO into 0, 1 and 6.)

原创粉丝点击