我是一个ubuntu的初学者。我想我的网络接口问题的驱动程序有一些问题,但显然没有( 无线驱动程序 )。不幸的是,我来到这里:无线断电与英特尔公司Centrino Advanced 6205 [泰勒峰] [8086:0085] (参考资料34)
我决定打开我的终端和数字:
sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0 power_save=0"然后我的电脑再也不能检测到任何WiFi连接了。
因此,我尝试将前面的命令数字化,再次更改0和1(我知道这很愚蠢..)但当然没起作用。然后,我最后用以下内容删除了该文件:
sudo rm /etc/modprobe.d/iwlwifi-opt.conf但我没有解决问题。我不能再上网了。我是说,我可以,但我必须用以太网电缆。
编辑:
ls /etc/modprobe.d的输出如下:
alsa-base.conf blacklist-rare-network.conf
blacklist-ath_pci.conf blacklist-watchdog.conf
blacklist.conf fbdev-blacklist.conf
blacklist-firewire.conf intel-microcode-blacklist.conf
blacklist-framebuffer.conf iwlwifi.conf
blacklist-modem.conf mlx4.conf
blacklist-oss.conf vmwgfx-fbdev.conf编辑2:这是ifconfig的输出:
eth0 Link encap:Ethernet HWaddr 00:21:cc:d2:65:42
inet addr:192.168.0.8 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::221:ccff:fed2:6542/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2013 errors:0 dropped:0 overruns:0 frame:0
TX packets:1513 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1911969 (1.9 MB) TX bytes:152735 (152.7 KB)
Interrupt:20 Memory:f2500000-f2520000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:736 errors:0 dropped:0 overruns:0 frame:0
TX packets:736 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:72478 (72.4 KB) TX bytes:72478 (72.4 KB) 编辑#3:这是lspci -knn | grep Net -A2的输出:
00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network Connection [8086:1502] (rev 04)
Subsystem: Lenovo Device [17aa:21f3]
Kernel driver in use: e1000e
--
03:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] [8086:0085] (rev 34)
Subsystem: Intel Corporation Centrino Advanced-N 6205 AGN [8086:1311]编辑#4:这是grep iwlwifi /etc/modprobe.d/*的输出:
/etc/modprobe.d/iwlwifi.conf:# /etc/modprobe.d/iwlwifi.conf
/etc/modprobe.d/iwlwifi.conf:# iwlwifi will dyamically load either iwldvm or iwlmvm depending on the
/etc/modprobe.d/iwlwifi.conf:# microcode file installed on the system. When removing iwlwifi, first
/etc/modprobe.d/iwlwifi.conf:# remove the iwl?vm module and then iwlwifi.
/etc/modprobe.d/iwlwifi.conf:remove iwlwifi \
/etc/modprobe.d/iwlwifi.conf:(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \发布于 2016-02-14 12:00:18
看起来您删除了iwlwifi模块。
你需要重新安装内核。在终点站运行:
sudo apt-get install --reinstall linux-image-`uname-r` linux-image-extra-`uname -r`然后重新启动。
发布于 2016-02-12 17:43:42
你的无线网卡的司机好像出了问题。我要做的第一步是删除您添加的行:
sudo vim /etc/modprobe.d/iwlwifi-opt.conf这将允许您编辑文件,找到行(‘options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0 power_save=0’)并删除或注释它。
我不知道如何解决司机的间歇性问题。我确实发现跑步:
sudo iwlist scanning帮助我的卡探测网络并给它一点震动。
https://askubuntu.com/questions/731391
复制相似问题