25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
336 B

  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. systemctl enable log2ram
  9. echo "Reboot to activate log2ram"
  10. else
  11. echo "You need to be ROOT (sudo can be used)"
  12. fi