update some content
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
"articleSection" : "post",
|
||||
"name" : "[筆記] 在ubuntu 18.04 環境下 安裝 it 850UM 讀卡機 展延自然人憑證 \/ install it 850UM Card Reader in Ubuntu 18.04",
|
||||
"headline" : "[筆記] 在ubuntu 18.04 環境下 安裝 it 850UM 讀卡機 展延自然人憑證 \/ install it 850UM Card Reader in Ubuntu 18.04",
|
||||
"description" : "\x3cp\x3e早上忘了要幹什麼,去看到手上的自然人憑證到期日是今年的 4\/17\x3c\/p\x3e\n\x3cp\x3e想說快到期了,看看能不能線上申請展延\x3c\/p\x3e\n\x3cp\x3e結果辦公室沒有Linux 可以用的讀卡機\x3c\/p\x3e\n\x3cp\x3eOOXX 咧,我們可是號稱全Linux 環境捏!\x3c\/p\x3e\n\x3cp\x3e結果居然沒有對應的硬體!?\x3c\/p\x3e\n\x3cp\x3e於是馬上敗了一台據說有支援 Linux 的 IT 850UM 讀卡機!\x3c\/p\x3e",
|
||||
"description" : "\u003cp\u003e早上忘了要幹什麼,去看到手上的自然人憑證到期日是今年的 4\/17\u003c\/p\u003e\n\u003cp\u003e想說快到期了,看看能不能線上申請展延\u003c\/p\u003e\n\u003cp\u003e結果辦公室沒有Linux 可以用的讀卡機\u003c\/p\u003e\n\u003cp\u003eOOXX 咧,我們可是號稱全Linux 環境捏!\u003c\/p\u003e\n\u003cp\u003e結果居然沒有對應的硬體!?\u003c\/p\u003e\n\u003cp\u003e於是馬上敗了一台據說有支援 Linux 的 IT 850UM 讀卡機!\u003c\/p\u003e",
|
||||
"inLanguage" : "en",
|
||||
"author" : "Eric Chang",
|
||||
"creator" : "Eric Chang",
|
||||
@@ -21,8 +21,8 @@
|
||||
"accountablePerson" : "Eric Chang",
|
||||
"copyrightHolder" : "Eric Chang",
|
||||
"copyrightYear" : "2020",
|
||||
"datePublished": "2020-02-19 16:22:38 \x2b0800 CST",
|
||||
"dateModified" : "2020-02-19 16:22:38 \x2b0800 CST",
|
||||
"datePublished": "2020-02-19 16:22:38 \u002b0800 CST",
|
||||
"dateModified" : "2020-02-19 16:22:38 \u002b0800 CST",
|
||||
"url" : "https:\/\/h.cowbay.org\/post\/install-it500u-card-reader-in-ubuntu-1804\/",
|
||||
"wordCount" : "160",
|
||||
"image" : "https://h.cowbay.orghttps://h.cowbay.org/images/post-default-9.jpg"",
|
||||
@@ -45,9 +45,9 @@
|
||||
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
|
||||
|
||||
<link href="https://h.cowbay.org/css/style.css?v=1632901489" rel="stylesheet" id="theme-stylesheet" type='text/css' media='all'>
|
||||
<link href="https://h.cowbay.org/css/style.css?v=1634607506" rel="stylesheet" id="theme-stylesheet" type='text/css' media='all'>
|
||||
|
||||
<link href="https://h.cowbay.org/css/custom.css?v=1632901489" rel="stylesheet" type='text/css' media='all'>
|
||||
<link href="https://h.cowbay.org/css/custom.css?v=1634607506" rel="stylesheet" type='text/css' media='all'>
|
||||
<link rel="shortcut icon" href="https://h.cowbay.org/img/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="https://h.cowbay.org/img/favicon.ico" type="image/x-icon">
|
||||
|
||||
@@ -328,13 +328,13 @@ if (!doNotTrack) {
|
||||
<p>就去文章裡面提到的連結看看</p>
|
||||
<p><a href="https://ccid.apdu.fr/">https://ccid.apdu.fr/</a></p>
|
||||
<p>同樣的,要從 git 下載比較新版的code 回來自己編譯</p>
|
||||
<pre><code>git clone --recursive https://salsa.debian.org/rousseau/CCID.git
|
||||
<pre tabindex="0"><code>git clone --recursive https://salsa.debian.org/rousseau/CCID.git
|
||||
cd CCID
|
||||
./bootstrap
|
||||
./configure
|
||||
make
|
||||
</code></pre><p>然後,就報錯了!</p>
|
||||
<pre><code>/home/changch/git/CCID/missing: 列 81: flex:命令找不到
|
||||
<pre tabindex="0"><code>/home/changch/git/CCID/missing: 列 81: flex:命令找不到
|
||||
WARNING: 'flex' is missing on your system.
|
||||
You should only need it if you modified a '.l' file.
|
||||
You may want to install the Fast Lexical Analyzer package:
|
||||
@@ -348,9 +348,9 @@ make[1]: Leaving directory '/home/changch/git/CCID'
|
||||
Makefile:369: recipe for target 'all' failed
|
||||
make: *** [all] Error 2
|
||||
</code></pre><p>少了個套件叫 flex,補安裝上去</p>
|
||||
<pre><code>sudo apt install flex
|
||||
<pre tabindex="0"><code>sudo apt install flex
|
||||
</code></pre><p>然後再跑一次</p>
|
||||
<pre><code>./bootstrap
|
||||
<pre tabindex="0"><code>./bootstrap
|
||||
./configure
|
||||
make
|
||||
sudo make install
|
||||
@@ -654,7 +654,7 @@ title="pinterest icon"></i>
|
||||
</div>
|
||||
<script src="https://h.cowbay.org/js/jquery.min.js"></script>
|
||||
<script src="https://h.cowbay.org/js/jquerymigrate.js"></script>
|
||||
<script src="https://h.cowbay.org/js/production.min.js?v=1632901489"></script>
|
||||
<script src="https://h.cowbay.org/js/production.min.js?v=1634607506"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user