ThinkPad X61sにAntergosをインストールした

Posted by onodai.


日本語が入力できてMikutterが使えるようになるまでやったことを書いていく

環境

  • ThinkPad X61s
  • デスクトップ環境はxfce
  • インストール時にAUR有効化
  • 指紋認証センサ付き
  • インストールメディアはantergos-2015.01.11-x86_64を使用

やったこと

  1. アップデート

    $ sudo pacman -Syu
  2. Antergosキーリング更新

    $ sudo pacman -Syy antergos-keyring
  3. 日本語フォント(ttf-koruri)インストール

    $ yaourt -S ttf-koruri
  4. フォントキャッシュ更新

    $ fc-cache -vf
  5. Vimインストール

    $ yaourt -S vim
  6. トラックポイント設定

    $ sudo vim ./etc/X11/xorg.conf.d/20-thinkpad.conf
    Section "InputClass"
    Identifier  "Trackpoint Wheel Emulation"
    MatchProduct    "TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc. Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint|USB Trackpoint pointing device|Composite TouchPad / TrackPoint"
    MatchDevicePath "/dev/input/event*"
    Option      "EmulateWheel"      "true"
    Option      "EmulateWheelButton"    "2"
    Option      "Emulate3Buttons"   "false"
    Option      "XAxisMapping"      "6 7"
    Option      "YAxisMapping"      "4 5"
    EndSection
  7. 中ボタンとトラックポイントでスクロール出来るようにする

    $ gpointing-device-settinfs

    ホイールエミュレーションを使用するにチェックを入れ、ボタン2に変更する

  8. 指紋証明の作成

    $ fprintd-enroll onodai

    onodaiの部分は好きな名前でいい
    指をスキャンするように求められるので、指示に従う

  9. sudoとかログイン画面で指紋認証出来るようにする

    $ sudo vim /etc/pam.d/system-local-login  
    $ sudo vim /etc/pam.d/lightdm

    以下をauthセクションの一番上に追加

    auth sufficient pam_fprintd.so
  10. IME(fcitx & Mozc)インストール

    $ yaourt -S fcitx fcitx-mozc fcitx-im fcitx-configtool  
    $ vim .xprofile
    export GTK\_IM\_MODULE=fcitx
    export QT\_IM\_MODULE=fcitx
    export DefaultIMModule=fcitx
    export XMODIFIERS=@im=fcitx
    export XMODIFIER=@im=fcitx
  11. Mikutterインストール
    $ yaourt -S mikutter

参考

ArchWiki見りゃだいたい分かる

comments powered by Disqus