在 Debian wheezy 上安装无线驱动程序 (realtek 8188CE)

在 Debian wheezy 上安装无线驱动程序 (realtek 8188CE)

我在为我的 Debian 安装无线驱动程序时遇到了困难。我的 debian 是 Sqeeze,但在我意识到 Wheezy 是支持我的无线适配器 Realtek 8188CE 后不久,我升级到了 wheezy。这是我的sources.list文件:

deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

我按照确切的步骤操作列在 Debian wiki 上。在第4步,输入iwconfig后,没有wifi标签(不应该在那里吗?),我认为wifi模块没有加载,但我不知道如何检查和添加它

这是我的打印输出:

clint@Thinkpad-W520:~$ lspci | grep -i wifi
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE      802.11b/g/n WiFi Adapter (rev 01)

输出iwconfig

lo no wireless extensions.

eth0 no wireless extensions.

pan0 no wireless extensions.

答案1

它对我来说很完美:

首先列出当前存在的 PCI 设备

% lspci
....

07:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)

修改/etc/apt/sources.list

% deb http://http.us.debian.org/debian testing main contrib non-free

安装更新

% apt-get update

安装 Realtek 和无线工具

% apt-get install firmware-realtek wireless-tools

确认无线网络正常工作

% iwconfig

wlan0     IEEE 802.11bgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=20 dBm   
          Retry  long limit:7   RTS thr=2347 B   Fragment thr:off
          Encryption key:off
          Power Management:off

eth0      no wireless extensions.

答案2

任何情况下都不应该将 Debian 稳定版的存储库与测试分支混合在一起。但是,您可以在存储库中添加向后移植存储库,然后您可以获得更新的内核以与 RTL8188CE Realtek 驱动程序一起使用

相关内容