Results 1 to 10 of 10
Hi,
I have 64bit ubuntu 10.04 installed on lenovo ideapad y450. recently, i ended up using the laptop on battery till it died and the wireless doesnt' seem to work ...
- 08-16-2010 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 20
ubuntu 10.04 wireless disabled after complete battery drained
Hi,
I have 64bit ubuntu 10.04 installed on lenovo ideapad y450. recently, i ended up using the laptop on battery till it died and the wireless doesnt' seem to work after i restarted the laptop after connecting the AC adapter.
when i go to network manager, i see wireless is grayed out and it says it is disabled ( the hard switch on the laptop for wireless is turned on).
Doing some research on forums, i did a sudo lshw -C network and the first line of it says
*-network DISABLED and the description is for wireless interface. I can't post the output of the laptop as i don't have a LAN connection or a usb drive to which is can copy and then post it here.
the product is PRO/Wireless 5100 AGN [shiloh] Network Connection from Intel
When i did the rfkill list, i got
Any help to get it up would help a lot.0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
Thanks a bunch in advance
Vishwa
- 08-16-2010 #2
Hello,
Please post the output of
This should just be a single number, corresponding toCode:cat /sys/class/rfkill/rfkill0/state
In theory, I believe 2 should only show if the hardware kill switch you mentioned is in fact blocking it. (You've double and triple checked the hardware switch, right?)0: RFKILL_STATE_SOFT_BLOCKED
transmitter is turned off by software
1: RFKILL_STATE_UNBLOCKED
transmitter is (potentially) active
2: RFKILL_STATE_HARD_BLOCKED
transmitter is forced off by something outside of
the driver's control.
This file is deprecated because it can only properly show
three of the four possible states, soft-and-hard-blocked is
missing.
If it doesn't show unblocked try
and try bringing the interface upCode:su - echo "1" > /sys/class/rfkill/rfkill0/state
EDIT: Sorry, Ubuntu, replace the line su - above withCode:sudo ifconfig wlan0 up
or you should be able to do itCode:sudo su -
Code:echo "1" | sudo tee /sys/class/rfkill/rfkill0/state
- 08-16-2010 #3Just Joined!
- Join Date
- Mar 2009
- Posts
- 20
Hi,
the out put of the cat command is 2.
I am assuming the hardware switch is the slider switch that is in the on position for the wireless. I did a few times just to be sure and I still get the same output.
Regards,
Vishwa
- 08-16-2010 #4
Hmm, I've found some bug reports at various times of the rfkill getting stuck at "2". No definite solution, but try this:
Flip the physical kill switch to the disable and back to the enable position.Code:sudo service network-manager stop sudo modprobe -r iwlagn sudo modprobe -r rfkill sudo modprobe iwlagn
Restart the network manager
This is basically what worked according to here.Code:sudo service network-manager start
- 08-16-2010 #5Just Joined!
- Join Date
- Mar 2009
- Posts
- 20
hi,
I tried what you suggested ..
When i use sudo modprobe -r rfkill, i get
tinFATAL: Module rfkill is buil
Also, the first time around, when i tried
cat /sys/class/rfkill/rfkill0/state, i got 2
but after I did the modprobe, there is no rfkill0, instead is it rfkill2 now and the value of cat /sys/class/rfkill/rfkill2/state, i got 2
but, other than that, i still dont' have the wireless running
- 08-16-2010 #6
Any chance you have an option in the BIOS to toggle the wireless on/off?
- 08-16-2010 #7Just Joined!
- Join Date
- Mar 2009
- Posts
- 20
hi,
Yes there is .. it is currently enabled..
Vishwa
- 08-16-2010 #8
Try also
If that helps, to load the module that way at boot doCode:sudo modprobe -r iwlagn sudo modprobe iwlagn disable_hw_scan=1
Code:echo "options iwlagn disable_hw_scan=1" | sudo tee -a /etc/modprobe.d/modprobe.conf
- 08-16-2010 #9Just Joined!
- Join Date
- Mar 2009
- Posts
- 20
hi..
that didn't help either..
vishwa
- 08-16-2010 #10
Can you boot up a live Ubuntu CD and see if it works from the live environment?


Reply With Quote