月別アーカイブ 2018年3月4日

Debian9 stretch スクリーンショット

shutterをインストールする
# apt-get install shutter

アクセサリ→スクリーンショット
で起動する。

Debian9 Stretch Windowsにリモートデスクトップ接続

freerdp-x11をインストールする
# apt -y install freerdp-x11

freerdpを起動する
$ xfreerdp -g 800×600 -u [ユーザー名] [IPアドレス]

Debian9 Stretch タッチパッドのタップを可能にする

synapticsタッチパッドのタップをONにする設定

ディレクトリを移動
# cd /usr/share/X11/xorg.conf.d

エディタで 40-libinput.conf を編集する。

下記のように、
「Option “Tapping” “on”」の1行を追加する。

Section “InputClass”
Identifier “libinput touchpad catchall
MatchIsTouchPad “on”
MatchDevicePath “/dev/input/event*”
Driver “libinput”
Option “Tapping” “on”
EndSection