2017-01-15 01:09:26 +00:00
|
|
|
# Installation :</br>
|
|
|
|
|
|
|
|
## Build dependencies :</br>
|
|
|
|
* git
|
|
|
|
* g++
|
|
|
|
* make
|
|
|
|
|
|
|
|
## Dependencies :</br>
|
2017-01-21 21:45:48 +00:00
|
|
|
* hidapi or libusb
|
|
|
|
|
|
|
|
## hidapi vs libusb :</br>
|
2017-04-04 22:25:38 +00:00
|
|
|
hidapi is a newer implementation but needs more testing.</br>
|
|
|
|
hidapi is more responsive than libusb (~20ms vs ~150ms).</br>
|
2017-10-25 22:37:43 +00:00
|
|
|
hidapi seems to not work on CentOS, writing to hidraw is not allowed.</br>
|
|
|
|
hidapi is recommended but if you encounter a problem on your system, switch to libusb.</br>
|
2017-01-15 01:09:26 +00:00
|
|
|
|
2017-01-26 01:49:15 +00:00
|
|
|
|
2017-10-25 22:37:43 +00:00
|
|
|
## Installation using repos :</br>
|
2017-01-26 01:49:15 +00:00
|
|
|
ArchLinux (aur) :</br>
|
2019-09-06 07:37:25 +00:00
|
|
|
`yay -S g810-led-git` # with yay</br>
|
2017-02-19 05:15:19 +00:00
|
|
|
`pacaur -S g810-led-git` # with pacaur</br>
|
2019-09-08 19:28:43 +00:00
|
|
|
`trizen -S g810-leg-git` # with trizen</br>
|
2019-09-06 07:36:18 +00:00
|
|
|
|
2018-10-31 18:16:04 +00:00
|
|
|
Fedora (copr) :<br/>
|
|
|
|
`sudo dnf copr enable lkiesow/g810-led` # Enable Copr repository<br/>
|
2019-01-08 01:12:22 +00:00
|
|
|
`sudo dnf install g810-led`<br/>
|
2019-09-06 07:36:18 +00:00
|
|
|
|
2019-01-08 01:12:22 +00:00
|
|
|
Gentoo :<br/>
|
2019-01-18 22:17:26 +00:00
|
|
|
`emerge app-misc/g810-led`<br/>
|
2019-09-06 07:36:18 +00:00
|
|
|
|
2019-01-16 20:49:50 +00:00
|
|
|
Debian (unstable, and 10 or later), Ubuntu 19.04 or later :<br/>
|
2020-10-28 19:48:31 +00:00
|
|
|
`sudo apt install g810-led`
|
2017-01-26 01:49:15 +00:00
|
|
|
|
2019-09-06 07:36:18 +00:00
|
|
|
Solus :<br/>
|
|
|
|
`sudo eopkg install g810-led`<br/>
|
|
|
|
|
2017-01-15 01:09:26 +00:00
|
|
|
## Installation of dependencies :</br>
|
|
|
|
ArchLinux :</br>
|
2017-01-21 22:00:07 +00:00
|
|
|
`sudo pacman -S git gcc make hidapi` # for hidapi</br>
|
|
|
|
`sudo pacman -S git gcc make libusb` # for libusb</br>
|
2017-01-15 01:09:26 +00:00
|
|
|
Debian :</br>
|
2017-01-21 22:00:07 +00:00
|
|
|
`sudo apt-get install git g++ make libhidapi-dev` # for hidapi</br>
|
|
|
|
`sudo apt-get install git g++ make libusb-1.0-0-dev` # for libusb</br>
|
2017-01-21 08:15:18 +00:00
|
|
|
Fedora :</br>
|
2017-01-21 22:00:07 +00:00
|
|
|
`sudo dnf install git make gcc-c++ hidapi-devel` # for hidapi</br>
|
|
|
|
`sudo dnf install git make gcc-c++ libusbx-devel` # for libusb</br>
|
2019-01-08 01:12:22 +00:00
|
|
|
Gentoo :<br/>
|
|
|
|
`sudo emerge dev-vcs/git dev-libs/hidapi` # for hidapi<br/>
|
|
|
|
`sudo emerge dev-vcs/git dev-libs/libusb` # for libusb<br/>
|
2017-01-15 01:09:26 +00:00
|
|
|
|
|
|
|
## Installation :</br>
|
|
|
|
`git clone https://github.com/MatMoul/g810-led.git`</br>
|
|
|
|
`cd g810-led`</br>
|
2017-05-07 00:04:35 +00:00
|
|
|
`make bin` # for hidapi</br>
|
|
|
|
`make bin LIB=libusb` # for libusb</br>
|
2017-01-15 01:09:26 +00:00
|
|
|
`sudo make install`</br>
|
2017-04-10 18:12:13 +00:00
|
|
|
|
2017-10-25 22:37:43 +00:00
|
|
|
## Installation of the library (For developers) :</br>
|
2017-05-07 00:04:35 +00:00
|
|
|
`make lib` # for hidapi</br>
|
|
|
|
`make lib LIB=libusb` # for libusb</br>
|
|
|
|
`sudo make install-lib` to install the libg810-led library.</br>
|
|
|
|
`sudo make install-dev` to install the libg810-led library and headers for development.</br>
|
2017-01-15 01:09:26 +00:00
|
|
|
|
|
|
|
## Update :</br>
|
|
|
|
Same as install, but your profile and reboot files are preserved.</br>
|
|
|
|
|
|
|
|
## Uninstall :</br>
|
2020-10-28 19:48:31 +00:00
|
|
|
`sudo make uninstall`</br>
|