3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Solaar をインストールする

Last updated at Posted at 2019-07-23

Solaar をインストールする

はじめに

sudo apt upgrade を行ったら Solaar がうまく動かなくなったので、対策として手動インストールの方法を取り急ぎ共有します。
そのうち清書します。たぶん。

検証環境

  • Ubuntu 16.04
  • Logitech K780

手動インストール (おすすめ)

インストール手順

  1. 端末 (Terminal) を起動する。
  2. GitHub からクローンする。
$ git clone --recursive https://github.com/pwr-Solaar/Solaar.git


3. 正常に動作するコミットまで巻き戻す (今回の場合は "a597b81f5ac974ca681c1784e72867d502d39ecb") 。

$ cd Solaar
$ git reset --hard a597b81f5ac974ca681c1784e72867d502d39ecb


4. (もしかしたら必要ないかも)

$ cd rules.d
$ sudo ./install.sh
$ cd ..


5. インストールする。

$ sudo -H python3 setup.py install --record files.txt

アンインストール手順

  1. 端末 (Terminal) を起動する。
  2. アンインストールする。
$ cd Solaar
$ cat files.txt | sudo xargs rm -rf

APT を使用してインストール (現在はこの方法だとうまく動作しないものがインストールされる)

  1. Solaar の PPA を追加する。
$ sudo add-apt-repository ppa:solaar-unifying/ppa


2. インストールする。

$ sudo apt update
$ sudo apt install solaar

参考文献

  1. Solaar - Manual installation
  2. Solaar git build : “Solaar” team
  3. UbuntuでもK400 Plusのファンクションキーを有効にしたい - いくやの斬鉄日記
  4. setup.pyを用いてインストールしたモジュールのアンインストール方法 - Qiita
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?