1. 磊科Nw336 USB無線網卡linux make 錯誤
下一個適配linux的nw336驅動,裝一個無線網路管理軟體(別用自帶的磊科無線網路管理程序,很不人性化)。具體的我也沒法幫到你i,你的系統是linux,建議到專業的BT論壇去查找下吧,祝問題早日解決
2. linux無線網卡驅動安裝問題。
.zip的linux不支持最好下一個.tar.gz格式的驅動,之後看下面
linux下解壓tar.gz文件
下面所所有操作,後面有所有步驟說明
[yonghu@localhost ~]# su root
口令:
[root@localhost ~]# cd /home/new/Desktop
[root@localhost Desktop]# tar -xzvf fcitx-3.4.2.tar.gz
[root@localhost Desktop]# cd /home/new/Desktop/fcitx-3.4.2
[root@localhost fcitx-3.4.2]#./configure --prefix=/opt/fictx
[root@localhost fcitx-3.4.2]#make
[root@localhost fcitx-3.4.2]#make install
各步驟詳解
[yonghu@localhost ~]#su root //這是注釋(使用root帳戶登錄,使用其他用戶,之後操作有可能許可權不夠)
口令: // 輸入root密碼
[root@localhost ~]# cd /home/new/Desktop
// (切換到tar.gz文件所在目錄,這里我的tar.gz文件在桌面)
[root@localhost Desktop]#tar -xzvf fcitx-3.4.2.tar.gz
// (解壓tar.gz文件,這里以fcitx-3.4.2來舉例,解壓得到fcitx-3.4.2文件夾)
[root@localhost Desktop]#cd /home/new/Desktop/fcitx-3.4.2
//(切換目錄到fcitx-3.4.2,軟體解壓的目錄)
[root@localhost fcitx-3.4.2]#./configure --prefix=/opt/fictx
//(配置,把文件存放在/opt/fictx下,刪除時,卸載軟體時,只要刪除這個文件就行了)
[root@localhost fcitx-3.4.2]#make (編譯)
[root@localhost fcitx-3.4.2]#make install (安裝)