/etc/rc.local 開機自啟動 不要執行阻塞的程式, 該檔案中不能加入使用者shell下的指令碼,例如加入 alias ll=」ls -l」 無效,因為該檔案的執行環境是在系統shell下,系統尚未進入使用者shell環境。
/etc/profile 第乙個使用者shell登入時 只執行一次, 可以放全域性的環境變數修改
~/.bash_profile對應每個人的profile,也只執行一次,只有shell登入執行
* 讀取~/.bash_profile,若它不存在,則讀取~/.bash_login,若前兩者不存在,讀取~/.profile。
~/.bashrc 對應每個人的profile,非shell登入時執行
圖形模式登入時,順序讀取:/etc/profile和~/.profile
文字模式登入時,順序讀取:/etc/bash.bashrc,/etc/profile和~/.bash_profile
linux 自啟動指令碼
編寫指令碼 etc init.d myscriptname chkconfig 3590 10 description 描述資訊,描述資訊,上面的90表示在眾多開機啟動指令碼的優先順序,10表示在眾多關機啟動指令碼的優先順序 這裡是指令碼邏輯 新增可執行許可權 chmod x myscriptnam...
tomcat自啟動指令碼
1 將該檔案放在 etc init.d目錄下,以後就可以使用service tomcat start stop status restart等命令了 2 在 etc rc.d rc3.d目錄下,執行 ln s etc init.d tomcat etc rc.d rc3.d s99tomcat 這樣...
windows自啟動指令碼
直接寫乙個普通批處理檔案,如果是需要讓它在系統啟動時執行,就將它放在c windows system32 grouppolicy machine scripts startup目錄下,如果是需要它在系統登出或關機時執行,就將它放在c windows system32 grouppolicy mach...