Linux

如何在 Ubuntu 中從 shell 腳本啟用 sysstat?

  • March 12, 2013

在 Ubuntu 中,我可以sysstat使用 apt 進行安裝,例如

apt-get install sysstat

然後通過互動式提示啟用它

dpkg-reconfigure sysstat

但是我想使用完全自動化的 shell 腳本來自動化這個過程,我可以使用什麼命令?

apt-get install sysstat -y
echo 'ENABLED="true"' > /etc/default/sysstat
service sysstat restart

另存為 say: /root/enSAR.sh,使其可執行chmod +x /root/enSAR.sh,然後以 root 身份執行:

~# sh /root/enSAR.sh

檢查過,如果您正在執行 Ubuntu,那麼應該可以。Debian 在 /etc/default/sysstat 中使用附加值

服務可以通過配置update-rc.d

Cron 作業使用 /etc/default/sysstat 中的設置,字元串ENABLED="true"

引用自:https://serverfault.com/questions/486657