Ubuntu 16.04設置開機啓動腳本的方法

需求:公司卡片機容量過小,只有100G,因爲使用的人比較的多,開機使用後有時候就會出現磁盤空間佔滿數據寫不進去的狀況,影響工做進度,並且每次使用完都得關掉卡片機,因此就有必要寫個清理磁盤的腳本,當卡片機開機啓動後執行腳本,若是磁盤達到設置的閾值,就進行空間的清理.ubuntu

rc.local腳本bash

rc.local腳本是一個ubuntu開機後會自動執行的腳本,咱們能夠在該腳本內添加命令行指令。該腳本位於/etc/路徑下,須要root權限才能修改。this

該腳本具體格式以下:spa

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
#/bin/sh /home/saneri/new_service.sh #腳本範例

exit 0

注意: 必定要將命令添加在 exit 0以前命令行

方法2:code

如何給ubuntu添加一個開機啓動腳本blog

1,新建個腳本文件new_service.ship

#!/bin/bash
# command content
# ..................................
exit 0

2,設置權限rem

sudo chmod 755 new_service.sh

3,把腳本放置到啓動目錄下it

sudo mv new_service.sh /etc/init.d/

4,將腳本添加到啓動腳本

執行以下指令,在這裏90代表一個優先級,越高表示執行的越晚

cd /etc/init.d/
sudo update-rc.d new_service.sh defaults 90

移除Ubuntu開機腳本

sudo update-rc.d -f new_service.sh remove
相關文章
相關標籤/搜索