Fedora Linux Support Community & Resources Center
  #1  
Old 24th February 2011, 04:38 PM
Griog Offline
Registered User
 
Join Date: Dec 2010
Location: Lapège, France
Posts: 6
linuxfedorafirefox
Wifi issue on Lenovo S10-3

Hi

I installed Fedora 14 x86-64 (and made all available updates) on a lenovo S10-3 netbook but I do not manage to enable wifi. Looks like it is hard-blocked but I just can not figure out why.

Here is the output of the 'rfkill list' command:
Code:
# rfkill list
0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
Using the unblock command does not change anything:
Code:
# rfkill unblock all
# rfkill list
0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
There is actually a switch button for the wifi but toggling it on/off does not change anything to the outputs listed above. Wifi is enabled in the BIOS.

By the way, the output of lspci is
Code:
# lspci
00:00.0 Host bridge: Intel Corporation N10 Family DMI Bridge
00:02.0 VGA compatible controller: Intel Corporation N10 Family Integrated Graphics Controller
00:02.1 Display controller: Intel Corporation N10 Family Integrated Graphics Controller
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 02)
00:1c.2 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 3 (rev 02)
00:1d.0 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation NM10 Family LPC Controller (rev 02)
00:1f.2 SATA controller: Intel Corporation N10/ICH7 Family SATA AHCI Controller (rev 02)
00:1f.3 SMBus: Intel Corporation N10/ICH 7 Family SMBus Controller (rev 02)
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
09:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
Thanks for your help!
Reply With Quote
  #2  
Old 25th February 2011, 03:06 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: Wifi issue on Lenovo S10-3

What is the output of:

iwconfig
lsmod | grep ath

?

SS
Reply With Quote
  #3  
Old 25th February 2011, 04:00 PM
Griog Offline
Registered User
 
Join Date: Dec 2010
Location: Lapège, France
Posts: 6
linuxfedorafirefox
Re: Wifi issue on Lenovo S10-3

Here it is:
Code:
# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

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
          Encryption key:off
          Power Management:off
          
vboxnet0  no wireless extensions.

# lsmod | grep ath
ath9k                  86135  0 
ath9k_common            5294  1 ath9k
ath9k_hw              283034  2 ath9k,ath9k_common
ath                     9505  2 ath9k,ath9k_hw
mac80211              229047  2 ath9k,ath9k_common
cfg80211              134933  4 ath9k,ath9k_common,ath,mac80211
Thanks for your time
Reply With Quote
  #4  
Old 25th February 2011, 05:21 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: Wifi issue on Lenovo S10-3

The lsmod looks good/right. The iwconfig is concerning. First there is the Tx-Power=off. Maybe it should be that way when not connected but it seems fishy. Second things is the vboxnet0. Do you have vbox running and could it have possibly usurped the device? (i.e. what happens if you don't run vbox)

Both those things may not be issues. But given that ath9k is already loaded successfully (and wlan0 exists), I'm not sure what to suggest (other, than, maybe finding out if the Tx-Power values changes when you toggle the switch).

SS
Reply With Quote
  #5  
Old 25th February 2011, 06:13 PM
Griog Offline
Registered User
 
Join Date: Dec 2010
Location: Lapège, France
Posts: 6
linuxfedorafirefox
Re: Wifi issue on Lenovo S10-3

Well, I had indeed virtualbox running. I un-installed it in order to be 100% sure it was not inferring but it does not change much (shall the switch be on or off, I get the same result):

Code:
# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

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
          Encryption key:off
          Power Management:off

Tx-power does not change when I toggle the switch. I furthermore tried to manually turn on tx-power but it looks like this does not change anything neither (I tried that with both the switch on or off):

Code:
# iwconfig wlan0 txpower on
# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

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
          Encryption key:off
          Power Management:off
          
# iwconfig wlan0 txpower 15
# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

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
          Encryption key:off
          Power Management:off
Anyway, thanks again for your help!
Reply With Quote
  #6  
Old 26th February 2011, 03:20 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: Wifi issue on Lenovo S10-3

I was poking around the bugzilla and found this:

https://bugzilla.redhat.com/show_bug.cgi?id=671514

so, you might try going back to kernel-2.6.35.9-64.fc14. e.g.

Code:
cd /tmp/
wget http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/os/Packages/kernel-2.6.35.6-45.fc14.x86_64.rpm
rpm -i kernel-2.6.35.6-45.fc14.x86_64.rpm --oldpackage
Note that you'll want to update /etc/yum.conf and either change installonly_limit to at least 5 (I'd go 10) or add a exclude=kernel line until they release a kernel that works to keep this (old) kernel from being removed from the system.


You'll also want to update /boot/grub/grub.conf to:
a) increase the timeout if you don't have one so you can select kernels at boot (10 is usually long enough)
b) set the default to point to the newly-installed old kernel (if it doesn't get set that way when installed... yum updates will change though... so...).

To keep yum from changing the kernel as it installs new ones, edit /etc/sysconfig/kernel and change UPDATEDEFAULT to 'no'.

SS
Reply With Quote
  #7  
Old 3rd March 2011, 04:39 PM
Griog Offline
Registered User
 
Join Date: Dec 2010
Location: Lapège, France
Posts: 6
windows_7firefox
Re: Wifi issue on Lenovo S10-3

Hi,

It was indeed the switch that was broken... Sorry for all that mess.

Regards,

Griog
Reply With Quote
Reply

Tags
atheros ar9285, fc14, lenovo, wifi

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Lenovo G550 Brightness and WiFi Fn keys coozoo Hardware & Laptops 2 8th March 2010 04:30 PM
Fedora 12 - Wifi Issue raisen Servers & Networking 2 21st January 2010 06:44 AM
Wlan (wifi) on lenovo ezeras Hardware & Laptops 4 11th August 2009 07:13 PM
wifi/widows lan issue arturius Hardware & Laptops 14 8th March 2009 10:55 AM
no wifi on F10 in Lenovo laptop blueboy Servers & Networking 12 26th December 2008 06:24 AM


Current GMT-time: 06:41 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat