`

Adding a startup script to be run at bootup

阅读更多

Ubuntu

 

1. sudo vi /etc/init.d/workDriveMap

 

2. chmod 755 /etc/init.d/workDriveMap

 

3. update-rc.d workDriveMap defaults(update-rc.d workDriveMap remove)

 

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

 

Solaris

 

1. Create a script in /etc/init.d, for example, workDriveMap

 

    su root

    vi /etc/init.d/workDriveMap

 

2.  chmod 755 /etc/init.d/workDriveMap

 

3.  Link them.

    

     ln -s /etc/init.d/workDriveMap /etc/rc0.d/SworkDriveMap
     ln -s /etc/init.d/workDriveMap /etc/rc1.d/SworkDriveMap

     ln -s /etc/init.d/workDriveMap /etc/rc2.d/SworkDriveMap
     ln -s /etc/init.d/workDriveMap /etc/rcS.d/SworkDriveMap

 

 

 

分享到:
评论
1 楼 RobertLeeJesus 2008-10-31  
如何移除脚本

update-rc -f FOO remove

相关推荐

    CE中文版-启点CE过NP中文.exe

    Compare memory: Added a limit to the number of address values shown per row (can be changed) Address List: When the option to deactivate children is set, the children will get deactivated first Memory...

    mac4linux v_1.0

    Mac4Lin also includes custom GTK splash screens and bootsplash themes to provide a seamless startup experience. These themes ensure that the initial boot-up process reflects the MacOSX aesthetic, ...

    ak2新版内核AKAIO1.5

    + New Super Mario Brothers Minigames on AK2: If they don't work, set Download Play to "Disabled" and boot in non-DMA mode (hold down A while loading) + Misc bug fixes (Too many to list). AK-AIO 1.2 +...

    Linux System Administrator Guide Version0.9

    - **MAKEDEV Script**: A script used to create device files. - **mknod Command**: Manually creates device files. - **lspci Command**: Lists PCI devices connected to the system. - **lsdev Command**:...

    Ubuntu The Complete Reference

    - **Java Clients**: Brief introduction to Java-based applications and how they can be installed and run on Ubuntu. #### Part VI - Security **Chapter 17 - Encryption, Integrity Checks, and Signatures...

Global site tag (gtag.js) - Google Analytics