Advertisement
Guest User

pigeta

a guest
Dec 7th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. INSTALLING
  2. ==========
  3.  
  4. First you need to install the tool libraries and binaries. Do this by executing
  5. the following command as root:
  6.  
  7. make install
  8.  
  9.  
  10. If you use systemd:
  11.  
  12. The `make install` step installed the razerd.service file. Reboot or run the
  13. following command as root to start the razerd daemon:
  14.  
  15. systemctl start razerd
  16.  
  17.  
  18. If you do NOT use systemd:
  19.  
  20. To automatically start the required system daemon "razerd" at bootup time, you
  21. need to install the init-script. This software package includes a generic
  22. example script, that should work out-of-the-box on many Linux distributions. To
  23. install it, invoke the following commands as root:
  24.  
  25. cp ./razerd.initscript /etc/init.d/razerd
  26. ln -s /etc/init.d/razerd /etc/rc2.d/S99razerd
  27. ln -s /etc/init.d/razerd /etc/rc5.d/S99razerd
  28. ln -s /etc/init.d/razerd /etc/rc0.d/K01razerd
  29. ln -s /etc/init.d/razerd /etc/rc6.d/K01razerd
  30.  
  31.  
  32. If you use udev:
  33.  
  34. The `make install` step installed the udev script to
  35. $(pkg-config --variable=udevdir udev)/rules.d/80-razer.rules
  36. This should work on most distributions.
  37.  
  38. If udev notification does not work, try to reboot the system.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement