Wifi 可用,但不会在 ubuntu 11.10 上自动启动

Wifi 可用,但不会在 ubuntu 11.10 上自动启动

大家晚上好,我遇到了一个问题,希望你们能帮我解决。我试图从这个网站更新我的 ubuntu 内核 http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.2-rc4-oneiric/ 一切进展顺利。但是,出于某种原因,我的 wifi 在新内核中无法使用,所以我决定切换回旧的 3.0.0-17 通用版,令我惊讶的是,即使 WIFI 可以正常工作,它也不会自动启动。我的意思是我必须单击 wifi 图标并标记“启用无线”。

这不是一个真正严重的问题,但我不喜欢每次登录我的 WIFI 时都打开它,因为在此之前它在系统启动时就可以正常工作。

这是什么原因造成的以及如何解决。

非常感谢您的帮助。

答案1

您可能遇到 asus-wmi 内核模块和 asus 驱动程序之间冲突的常见问题。

建议 - 将以下内容逐行复制并粘贴到终端中:

sudo modprobe -r asus-wmi

cd /etc/modprobe.d

sudo nano blacklist.conf

然后blacklist asus-wmi在文件末尾添加新行。

保存并重新启动。

答案2

根据你在问题中的评论,尝试一下

编辑/etc/rc.local,输入 -

gksu gedit /etc/rc.local

编辑文件,使其看起来像

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
rfkill unblock wifi
exit 0

保存并关闭。之后只需重新启动并查看它是否有效。

相关内容