分页: 1 / 1
神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 13:04
由 torthtyo
新买的神舟本本,8G内存。装完ubuntu 12.04 LTS i386 后,不能使用无线网卡。屏幕顶部任务栏网络一项菜单中,Enable Wireless是灰色的。
以前使用Thinkd pad T61p/T420,装完ubuntu后就能用,完全没有这个问题。有达人能帮帮我看看这个问题吗?
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 13:20
由 onlylove
lspci |grep network
看看网卡什么芯片的
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 14:22
由 torthtyo
onlylove 写了:lspci |grep network
看看网卡什么芯片的
deven@deven-hs:~$ lspci|grep -i network
07:00.0 Network controller: Atheros Communications Inc. AR9485 Wireless Network Adapter (rev 01)
看起来ubuntu是识别的
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 14:27
由 onlylove
哦,这个不代表识别……没有驱动一样可以读取这个信息,不管有没有驱动
不过这个的驱动应该是ath9k吧?应该没问题的
lsmod看下有没有
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 14:30
由 torthtyo
onlylove 写了:哦,这个不代表识别……没有驱动一样可以读取这个信息,不管有没有驱动
不过这个的驱动应该是ath9k吧?应该没问题的
lsmod看下有没有
我的lsmod输出是这样子的:
deven@deven-hs:~$ lsmod|grep -i ath9k
ath9k 122028 0
mac80211 475546 1 ath9k
ath9k_common 13782 1 ath9k
ath9k_hw 384054 2 ath9k,ath9k_common
ath 19436 3 ath9k,ath9k_common,ath9k_hw
cfg80211 181041 3 ath9k,mac80211,ath
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 14:32
由 风雨同路

用联想的没问题,是系统问题吗?
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-25 14:42
由 torthtyo
风雨同路 写了:
用联想的没问题,是系统问题吗?
还不知道,我用think pad一直没问题
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-26 16:03
由 torthtyo
吼一下,有没有人能够指导一下,如何解决这个问题!
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-26 16:07
由 ceclinux
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-26 20:38
由 torthtyo
deven@deven-hs:~$ iwconfig
wlan0 IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=off
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:off
lo no wireless extensions.
eth0 no wireless extensions.
usb0 no wireless extensions.
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-27 10:08
由 onlylove
为啥是USB0?难道神船用的是USB口的无线网卡?(有线网卡用usb概率不大吧)
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-27 10:24
由 torthtyo
onlylove 写了:为啥是USB0?难道神船用的是USB口的无线网卡?(有线网卡用usb概率不大吧)
我家里只有无线(和别人合用)。因为我有线用不了,现在无线wifi也不能用,所以我暂时用手机的usb共享网络方式让笔记本上网。usb0是手机usb共享的接口,我们可以忽略。
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-27 10:34
由 onlylove
哦,那就简单了……没识别……要不你重新下载下最新驱动编译下?
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-27 10:50
由 onlylove
Re: hp Pavilion g6 with Atheros (AR9485) [168c:0032] doesn't connect in 11.04
Yes! Thank you praseodym!
For anyone else looking for a solution we ended up doing this:
Code:
sudo apt-get install --reinstall linux-headers-$(uname -r) build-essential
wget
http://www.orbit-lab.org/kernel/compat- ... .6.tar.bz2
tar jxvf compat-wireless-2.6.tar.bz2
cd compat-wireless-20*
./scripts/driver-select atheros
make
sudo make install
Then I did some instructions that appeared on the terminal (something like: "sudo make unload" "sudo make wlunload" "sudo make btunload" but it looked like didn't do much)
then restart (in kernel 2.6, of course)
And Voila!
I also want to thank wildmanne39.
http://ubuntuforums.org/showthread.php?t=1857808&page=7
类似问题……
Re: 神舟精盾K580P-i7 D5无线网卡不能使用
发表于 : 2013-03-27 11:02
由 onlylove