web-dev-qa-db-ja.com

Ubuntu 16.04のlenovo X1カーボンに指紋ドライバーをインストールする方法

Ubuntu 16.04にX1カーボン第5世代の指紋ドライバーをインストールする必要があります。 Linuxディストリビューションのドライバーはどこにありますか?

lspciの出力は次のとおりです

kasun@kasun-ThinkPad-X1-Carbon-5th:~$ lspci
00:00.0 Host bridge: Intel Corporation Device 5904 (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Device 5916 (rev 02)
00:08.0 System peripheral: Intel Corporation Sky Lake Gaussian Mixture Model
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1c.2 PCI bridge: Intel Corporation Device 9d12 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1d.0 PCI bridge: Intel Corporation Device 9d18 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d4e (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d71 (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (4) I219-LM (rev 21)
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)
04:00.0 Network controller: Intel Corporation Device 24fd (rev 88)
05:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd Device a804
kasun@kasun-ThinkPad-X1-Carbon-5th:~$ 

およびlsusb出力

kasun@kasun-ThinkPad-X1-Carbon-5th:~$ lsusb
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 138a:0097 Validity Sensors, Inc. 
Bus 001 Device 003: ID 13d3:5682 IMC Networks 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
kasun@kasun-ThinkPad-X1-Carbon-5th:~$ 

138a:0097 Validity Sensors、Inc。はまだ「リバースエンジニアリング」されており、簡単にインストールできるfingerprintなどによってまだサポートされていません。

以下は、ニキータ・ミハイロフによるWIP(Work In Progress)です。

  1. Sudo apt install git libusb-1.0-0-dev libxv-dev
  2. git clone https://github.com/nmikhailov/Validity90.git
  3. cd Validity90/libfprint
  4. ./configure
  5. make
  6. make check
  7. Sudo make install

追加情報と議論:

https://forums.lenovo.com/t5/Linux-Discussion/Validity-Fingerprint-Reader-Linux/td-p/3352145

https://bugs.freedesktop.org/show_bug.cgi?id=94536

10
user692175

138a:0097の現在の唯一のソフトウェアは https://github.com/nmikhailov/Validity90/tree/master/prototype ですが、まだドライバーが存在しないため、krispyが言及したWIPはコンピューターのロックを解除できません。内部データベースのスキャンとチェックのみが可能なプロトタイプがありますが、Windowsの外部に指紋を追加する方法はまだありません。

開発をさらにサポートするには、 https://github.com/nmikhailov/Validity90/blob/master/prototype/README.md の指示に従って、GitHubに新しい問題を作成し、プロトタイプ。

Sudo apt-get install make gcc libgcrypt-dev libglib2.0-dev libnss3-dev libusb-1.0-0-dev libssl-dev libpng-dev libgnutls28-dev
make
./prototype

出力を https://github.com/nmikhailov/Validity90/issues/new にコピーします。タイトルは「Thinkpad X1 Carbon 5th Generation(138a:0097)のプロトタイプ出力」です。

0
clownfishhuman