欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Ubuntu常見(jiàn)錯(cuò)誤問(wèn)題的解決方法小結(jié)

 更新時(shí)間:2016年11月16日 10:43:01   作者:bladestone  
最近經(jīng)常使用ubuntu,難免會(huì)遇到各種各樣的問(wèn)題。所以想著記錄下來(lái),方便自己和大家以后需要的時(shí)候查看參考,文中介紹的很詳細(xì),相信對(duì)大家學(xué)習(xí)或者使用Ubuntu能有一定的參考借鑒價(jià)值,感興趣的朋友們下面來(lái)一起看看吧。

一、下載 http://www.tcpdump.org/#latest-release,下載libcap-1.8.1.tar.gz, 解壓縮之后

錯(cuò)誤1: ./configure

checking for getifaddrs... yes 
checking ifaddrs.h usability... yes 
checking ifaddrs.h presence... yes 
checking for ifaddrs.h... yes 
checking for socklen_t... yes 
checking for getaddrinfo... yes 
checking whether to build optimizer debugging code... no 
checking whether to build parser debugging code... no 
checking whether we have DAG API headers... no 
checking whether we have Septel API headers... no 
checking whether we have Myricom Sniffer API... no 
checking whether TurboCap is supported... no 
checking for flex... no 
checking for lex... no 
configure: error: Neither flex nor lex was found.

核心錯(cuò)誤信息為: 

error: Neither flex nor lex was found. 

解決辦法: sudo apt-get install flex bison

Reading package lists... Done 
Building dependency tree     
Reading state information... Done 
The following package was automatically installed and is no longer required: 
 linux-image-extra-4.4.0-34-generic 
Use 'sudo apt autoremove' to remove it. 
The following additional packages will be installed: 
 libbison-dev libfl-dev 
Suggested packages: 
 bison-doc 
The following NEW packages will be installed: 
 bison flex libbison-dev libfl-dev 
0 upgraded, 4 newly installed, 0 to remove and 7 not upgraded. 
Need to get 900 kB of archives. 
After this operation, 2,692 kB of additional disk space will be used. 
Do you want to continue? [Y/n] y 
Get:1 http://mirrors.aliyun.com/ubuntu xenial/main amd64 libfl-dev amd64 2.6.0-11 [12.5 kB] 
Get:2 http://mirrors.aliyun.com/ubuntu xenial/main amd64 flex amd64 2.6.0-11 [290 kB] 
Get:3 http://mirrors.aliyun.com/ubuntu xenial/main amd64 libbison-dev amd64 2:3.0.4.dfsg-1 [338 kB] 
Get:4 http://mirrors.aliyun.com/ubuntu xenial/main amd64 bison amd64 2:3.0.4.dfsg-1 [259 kB] 
Fetched 900 kB in 1s (518 kB/s) 
Selecting previously unselected package libfl-dev:amd64. 

然后輸入==>   sudo make install , 進(jìn)行安裝

錯(cuò)誤2:

checking for gcc... gcc 
checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables...  
checking whether we are cross compiling... no 
checking for suffix of object files... o 
checking whether we are using the GNU C compiler... yes 
checking whether gcc accepts -g... yes 
checking for gcc option to accept ISO C89... none needed 
checking for pcap_open_live in -lpcap... no 
error: pcap library not found! 

問(wèn)題解決:

sudo apt-get install libsqlite3-dev libpcap-dev 

然后重新嘗試新的命令,即可解決上述錯(cuò)誤

二、中文模式下切換回英文模式?

修改/etc/default/locale文件的語(yǔ)言值。

將LANG zh_CN.UTF-8修改為en_US.UTF-8  , LANGUAGE zh_CN:zh修改為en_US:en

三、英文模式下開(kāi)機(jī)自動(dòng)啟動(dòng)IBUS中文輸入法。

英文模式下,ibus不能自動(dòng)啟動(dòng)。每次輸入中文都得手動(dòng)啟動(dòng)。這個(gè)讓人不能接受。google一下,兩種方法。

方法1:system settings->Languange-support->keyboard input method system ->ibus 

這種方法我沒(méi)試驗(yàn)成功。如圖所示,選擇了沒(méi)有保存按鈕。我以為是默認(rèn)保存的。但是關(guān)了在打開(kāi)發(fā)現(xiàn)還是沒(méi)有選擇上。有可能語(yǔ)言包沒(méi)有按完整的語(yǔ)言,每次進(jìn)入語(yǔ)言設(shè)置,都會(huì)提示語(yǔ)言包沒(méi)有安裝完整。

方法2:添加ibus設(shè)置為開(kāi)機(jī)啟動(dòng)的應(yīng)用               

system->preferences->startup application

    

-d 的意思是讓ibus在后臺(tái)運(yùn)行

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流。

相關(guān)文章

  • PHP程序員玩轉(zhuǎn)Linux系列 備份還原MySQL

    PHP程序員玩轉(zhuǎn)Linux系列 備份還原MySQL

    這篇文章主要為大家詳細(xì)介紹了PHP程序員玩轉(zhuǎn)Linux系列文章,MySQL備份還原教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-04-04
  • Linux sed命令的使用

    Linux sed命令的使用

    這篇文章主要介紹了Linux sed命令的使用,幫助大家更好的理解和學(xué)習(xí)Linux的使用,感興趣的朋友可以了解下
    2020-08-08
  • 在Linux上識(shí)別同樣內(nèi)容的文件詳解

    在Linux上識(shí)別同樣內(nèi)容的文件詳解

    這篇文章主要給大家介紹了關(guān)于如何在Linux上識(shí)別同樣內(nèi)容的文件的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用Linux具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-06-06
  • linux/OSX中“DD”命令制作ISO鏡像操作系統(tǒng)安裝U盤(pán)的方法

    linux/OSX中“DD”命令制作ISO鏡像操作系統(tǒng)安裝U盤(pán)的方法

    這篇文章主要介紹了linux/OSX中“DD”命令制作ISO鏡像操作系統(tǒng)安裝U盤(pán)的方法,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2018-09-09
  • linux環(huán)境中常用的mysql命令介紹

    linux環(huán)境中常用的mysql命令介紹

    大家好,本篇文章主要講的是linux環(huán)境中常用的mysql命令介紹,感興趣的同學(xué)趕快來(lái)看一看,對(duì)你有幫助的話記得收藏一下,方便下次瀏覽
    2021-11-11
  • Linux下一只五顏六色的「貓」

    Linux下一只五顏六色的「貓」

    這篇文章主要介紹了Linux下一只五顏六色的「貓」,在 Linux 下,此貓非彼貓,這里的 cat 并不代表貓,而是單詞 concatenate 的縮寫(xiě),主要給大家介紹了 ccat 的用法,需要的朋友可以參考下
    2020-07-07
  • Linux學(xué)習(xí)之mkdir命令詳解

    Linux學(xué)習(xí)之mkdir命令詳解

    大家好,本篇文章主要講的是Linux學(xué)習(xí)之mkdir命令詳解,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話記得收藏一下,方便下次瀏覽
    2021-12-12
  • Hadoop streaming詳細(xì)介紹

    Hadoop streaming詳細(xì)介紹

    這篇文章主要介紹了Hadoop streaming詳細(xì)介紹的相關(guān)資料,需要的朋友可以參考下
    2017-03-03
  • 關(guān)于將Web項(xiàng)目部署到阿里云服務(wù)器(5個(gè)步驟搞定)

    關(guān)于將Web項(xiàng)目部署到阿里云服務(wù)器(5個(gè)步驟搞定)

    這篇文章主要介紹了關(guān)于將Web項(xiàng)目部署到阿里云服務(wù)器(5個(gè)步驟搞定),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-07-07
  • Linux中的ls -l命令展示信息

    Linux中的ls -l命令展示信息

    這篇文章主要介紹了Linux中的ls -l命令展示信息,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-11-11

最新評(píng)論