25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

install.sh 522 B

8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
8 yıl önce
12345678910111213141516171819
  1. #!/bin/sh
  2. if [ `id -u` -eq 0 ]
  3. then
  4. cp log2ram.service /etc/systemd/system/log2ram.service
  5. chmod 644 /etc/systemd/system/log2ram.service
  6. cp log2ram /usr/local/bin/log2ram
  7. chmod a+x /usr/local/bin/log2ram
  8. cp log2ram.conf /etc/log2ram.conf
  9. chmod 644 /etc/log2ram.conf
  10. systemctl enable log2ram
  11. cp log2ram.hourly /etc/cron.hourly/log2ram
  12. chmod +x /etc/cron.hourly/log2ram
  13. /usr/local/bin/log2ram init
  14. echo "##### Reboot to activate log2ram #####"
  15. else
  16. echo "You need to be ROOT (sudo can be used)"
  17. fi