網(wǎng)上有很多Debian系統(tǒng)安裝rtl8188EUS無線網(wǎng)卡的說明。但是無論是采用Debian官方網(wǎng)站的推薦步驟,還是采用github上推薦的編譯內(nèi)核模塊的方法都不成功?;蛟S是Debian10官方未及時更新,或許是編譯內(nèi)核模塊的程序與Debian10不匹配(很多程序都是5年前更新的)。
FAST150US是迅捷的無線USB網(wǎng)卡。芯片采用的是臺灣realtek的rtl8188EUS。(使用lsusb即可看到)
在FreeBSD12系統(tǒng)下無需設(shè)置即可被系統(tǒng)自動識別,但是在Debian10系統(tǒng)下竟然不能自動識別,看來FreebSD系統(tǒng)還是有自己的優(yōu)勢的。
安裝完畢Debian10后首先需要使用有線網(wǎng)絡聯(lián)通互聯(lián)網(wǎng)。建議使用root進行以下操作。
#cd /etc/apt
#cp sources.list sources.list.bak
#nano sources.list(如果不修改鏡像源,找不到后面的驅(qū)動模塊)
(清空文件中已存在的內(nèi)容,然后將以下內(nèi)容粘貼進文件中)
# 默認注釋了源碼鏡像以提高 apt update 速度,如有需要可自行取消注釋
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
(在每個地址的后面加了contrib non-free)
(Ctrl+O回車保存, Ctrl+x退出)
#apt update
#apt install firmware-realtek (安裝realtek驅(qū)動)
#apt install wpasupplicant
#cd /etc/network
#cp interfaces interfaces.bak
#ip addr (記下無線網(wǎng)卡的名稱:wls32)
#nano /etc/network/interfaces
(編輯 /etc/network/interfaces 文件,添加以下內(nèi)容)
#The wireless network interface
allow-hotplug wls32
iface wls32 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
(Ctrl+O回車保存, Ctrl+x退出)
#nano /etc/wpa_supplicant/wpa_supplicant.conf
country=CN
ctrl_interface=DIR=/var/run/wap_supplicant GROUP=netdev
update_config=1
(前面這一段可不用)
network={
ssid="your_ssid"(無線網(wǎng)絡名稱,注意英文雙引號)
psk="your_password"(無線網(wǎng)絡密碼,注意英文雙引號)
}
(Ctrl+O回車保存, Ctrl+x退出)
拔掉有線網(wǎng)卡的網(wǎng)線。
#reboot (重啟機器)
#ip addr(即可看到無線網(wǎng)卡的詳細情況)
當然如果你的有線網(wǎng)絡與無線網(wǎng)絡IP地址不是一個網(wǎng)段,需要禁用有線網(wǎng)卡,或者按照debian的規(guī)則設(shè)置路由。
聯(lián)系客服