2012年11月12日 星期一

Lenovo 筆電裝 Ubuntu 12.10 底下安裝指紋辨識

裝完了小紅點之後,看到指紋辨識無法使用,當下馬上就去找文章給它處理下去。

先加入PPA
sudo add-apt-repository ppa:fingerprint/fingerprint-gui

再更新資料庫
sudo apt-get update

安裝所需要套件
sudo apt-get install libbsapi policykit-1-fingerprint-gui fingerprint-gui

執行 fingerprint-gui ,就能設定指紋,以後就不用再打密碼啦!!

參考網站:http://www.techgaun.com/2012/10/enable-fingerprint-authentication-in.html

Lenovo 筆電裝 Ubuntu 12.10 底下使用小紅點

話說最近新買了一台筆電,裝完 Ubuntu 12.10 ,好用小紅點居然不能用,

趁著上班空閒馬上就給它找文章處理了下去。

vim /usr/share/X11/xorg.conf.d/11-evdev-trackpoint.conf


Section "InputClass"
    Identifier      "Elantech Trackpoint"
    MatchProduct    "PS/2 Generic Mouse"
    MatchDevicePath "/dev/input/event*"
    Option          "EmulateWheel" "true"
    Option          "EmulateWheelButton" "2"
    Option          "EmulateWheelTimeout" "200" 
    Option          "YAxisMapping" "4 5" # vertikales Scrollen
    Option          "XAxisMapping" "6 7" # horizontales Scrollen
EndSection


sudo modprobe -rv psmouse && sudo modprobe -v psmouse

改完設定檔,重開機小紅點就復活就可以用啦!!

參考網站:http://wiki.ubuntuusers.de/Trackpoint