2017年11月14日

開機時自動執行一些程式

在 Microsoft Windows 系統,有一個 啟動 的資料夾。





只要把程式的捷徑放到這個資料夾,在開機時就會自動啟動。Linux 也同樣能做到這樣的功能。



# vi /etc/rc.local                                                                                                           



把你要執行的檔案,設定好 執行 的屬性,然後把路徑寫到 /etc/rc.local 裡面去,就可以在開機時,自動執行了。

ex:


#!/bin/sh

#

# This script will be executed *after* all the other init scripts.

# You can put your own initialization stuff in here if you don't

# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

# 開機時,啟動 /root/nat 這個 script 檔案,跑完自訂 iptables 的規則

/root/nat


沒有留言: