我终于找到了一个解决方案,使我的wifi稳定在ubuntu 10.10。我的ASUS ul30vt和Atheros AR9285都有问题,但是通过安装昨天的最新的,我的互联网终于稳定了。
我认真地想过再次安装win7。但我遇到的一个小问题是,无线网络在启动时不会自动打开,所以每次启动时,我都要去终端和sudo modprobe ath9k,然后无线连接。我曾尝试在启动应用程序中发出该命令,但这不起作用。我能做一个脚本或什么东西来启动它,或者有其他简单的解决方案吗?
发布于 2010-11-18 09:44:09
/etc/rc.local是一个愚蠢的地方,可以说是海事组织。
在ath9k的末尾重击/etc/modules (默认情况下应该处理哪些模块被添加的文件)
发布于 2010-11-19 01:01:43
您评论了ath9k_htc正在加载,而不是ath9k。也许您应该在/etc/modprobe.d/blacklist.conf中将ath9k_htc列入黑名单。ath9k可能会被加载。
发布于 2010-11-18 09:30:05
只需将命令添加到/etc/rc.local文件即可。此脚本在每个多用户运行级的末尾执行。确保脚本在成功时“退出0”,或者在错误时退出任何其他值。
在你的情况下,你可以这样做:
#!/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.
modprobe ath9k
if [ $? == 0 ]
then
exit 0
else
exit 1
fihttps://askubuntu.com/questions/13791
复制相似问题