Linux BOOT AUTO RUN

Ubuntu
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Linux BOOT AUTO RUN

文章 yehlu »

http://embraceubuntu.com/2005/09/07/add ... at-bootup/

So you have a script of your own that you want to run at bootup, each time you boot up. This will tell you how to do that.

Write a script. put it in the /etc/init.d/ directory.
Lets say you called it FOO. You then run

% update-rc.d FOO defaults

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

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.)

Also, to know which runlevel you are in, use the runlevel command.
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Re: Linux BOOT AUTO RUN

文章 yehlu »

shell script

代碼: 選擇全部

#! /bin/sh
/bin/mount -t vboxsf share /mnt/share
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Re: Linux BOOT AUTO RUN

文章 yehlu »

代碼: 選擇全部

update-rc.d  -f mount_share remove
rm /etc/init.d/mount_share 
回覆文章

回到「Ubuntu」