Trouble with wireless switch (rfkill) and wireless connectivity.

Hello, this is my first message in this community so please bare with me if this message should be in the newbie part; but I think it's better fitted here. Other than that, I'm glad to be here .
After quite some time in Fedora I'm coming to Arch and I must say I'm delighted, so I wanted to use it in my laptop too which was running an old version of Fedora.
The laptop is an Airis N930 (about 5 years old) with a RaLink RT2500 wireless adapter which worked well in Fedora 11 but I'm having some trouble getting it to work in Arch. The problem is that the connectivity switch in this laptop is kind of a software one: in Windows it's compulsory to have a program which came in the drivers disk so that when that button is pressed (think of it as another key in the keyboard) the wireless connectivity is turned on and the indicator led lights up.
For a Linux based system there's no such program (I think) but the behaviour seems to be different in newer and older systems (I've tried Fedora and Ubuntu recent live environments and the behaviour is the same as in Arch). In Fedora 11 it just works everything's unblocked by default, in Arch the hardware block seems to be on and I don't know of any way to unblock it:
root@laptop ~ $ ifconfig wlan0 up
SIOCSIFFLAGS: Operation not possible due to RF-kill
root@laptop ~ $ rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
root@laptop ~ $ rfkill event unblock phy0
1298671843.804446: idx 0 type 1 op 0 soft 0 hard 1
Pressing the wireless connectivity button doesn't produce any event... Does anyone know what can I try or how to remove the hard block? Could it be related to newer kernels?
Thank you very much for your time, any fixes, workarounds or ideas are welcomed.

Thank you for your tips lamegaptop. I already have linux-firmware installed and I'm using the supported kernel module for the card (it's a PCI one):
06:01.0 Network controller: RaLink RT2500 802.11g (rev 01)
Loaded modules for it:
rt2500pci 12420 0
rt2x00pci 3890 1 rt2500pci
rt2x00lib 24866 2 rt2500pci,rt2x00pci
mac80211 178404 2 rt2x00pci,rt2x00lib
cfg80211 120337 2 rt2x00lib,mac80211
eeprom_93cx6 1004 1 rt2500pci
Rfkill is installed too, the output I posted in the first post belongs to the commands I entered in the Arch system. In Fedora rfkill always reports both blocks to be off.
As the Fedora system is running a 2.6.30.10 kernel I tried to run some tests using the LTS kernel (it's a 2.6.32.X right now) in the Archboot live environment, the output of "rfkill list" changed as seen below:
$ rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
$ rfkill iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 IEEE 802.11bg ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=0 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:on
$ ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:4 errors:0 dropped:0 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:264 (264.0 b) TX bytes:264 (264.0 b)
$ ifconfig wlan0 up
$ ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:4 errors:0 dropped:0 overruns:0 frame:0
TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:264 (264.0 b) TX bytes:264 (264.0 b)
$ rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
$ ifconfig wlan0 up
SIOCSIFFLAGS: Operation not possible due to RF-kill
This behaviour was the same when running the default Arch kernel in Archboot. I'm thinking in extracting the kernel configuration from the Fedora kernel and use it to build a new one and see if it helps, although I'm not sure where the problem may be.

Similar Messages

  • IMac suddenly has trouble with wireless connection

    This is how it happened:
    1. Landlord buys electrically faulty mansion
    2. Landlord realizes he cannot keep up with mortgage and property taxes
    3. Landlord subleases rooms to renters, including me
    4. House has a power outage, iMac shuts down.
    5. iMac recognizes wireless network, but shows that it has zero connectivity (which is false, because my two other laptops connect just fine, because their powers obviously weren't cut off abruptly)
    6. Verified and fixed the iMac with installation disc, but still the wireless connection comes and goes on its own whim.
    7. Tried shutting off nearby computers to see if it would take away any sort of interference. Worked, but after hours of working, iMac yet again fails to connect.
    8. Tried assigning it IP ranges and all that - no luck there.
    So what now, guys? Am I going to have to send my beloved iMac away for repair? It's the current model, if that helps. Any help would be appreciated...!

    Just called apple support. This is what they suggest:
    System management control reset:
    1. plug out everything that connects to the imac
    2. press the power button for 7 seconds
    3. don't start the imac yet!
    4. as SOON as you start the imac, press command/option/P/R.
    If this doesn't work, then you need to pretty much bring it to the store to have it looked at.
    This actually worked for me.

  • Troubles with a switch case and final expression?

    Been developing C/C++ for quite a while and still new to Java, and struggling with even the simplest things ... Why isnt this switch/case working?
    have some final "variable" declared in a class contating "constants" like this ...
    public class CConstants {
      public static final int MY_CONSTANT1 = 0x01;
    }Now, If I'm trying to use "MY_CONSTANT1" in a case stateent, I get the error "constant expression required" ?
    CConstants c = new CConstants();
    switch(condition){
      case c.MY_CONSTANT1: { //do some work; break; }
      default: { }
    }I thought this would be a nice idea to increase readability as there will be a long switch/case statement.
    Please help!
    Edited by: George.F on Sep 3, 2009 3:07 AM
    Edited by: George.F on Sep 3, 2009 3:08 AM

    You should refer to that constant as CConstants.MY_CONSTANT1.
    Refering to it via a reference to CConstants is possible but strongly discouraged (infact I'd make CConstants non-instantiable by adding a private constructor).
    Other than that your code should work.
    Could you post a SSCCE that demonstrates your problem.

  • Satellite L500 and issues with wireless connection

    Hello people
    Ill just throw my problem out there.
    First of all my details and info which may help you help me!
    Satellite L500 running windows 7 (note: same issues when Vista was installed)
    Latest wireless drivers as well as latest drivers for everything else.
    My wireless router is a billion voip enabled router 7000 series its quite a good one for when I got it about 2 yrs ago and works fine.
    Basically the problem is the wireless on my Satellite L500 keeps dropping out. Im no more than 20m away at most, right now Im 10m away with 1 wall in the way. I tried to get to a website and it says connection dropped out or unable to find host.
    However the other laptops in the same room same spot at the same time has no issues at all. Never has.
    As soon as I go into the same room as my router it works again. Sometimes works if I just stand on the opposite wall.
    So basically Im thinking my wireless card in my laptop is either faulty or just no good?
    Can u replace the wireless card with a different one? Maybe the Toshiba ones are just no good? Ive read so many problems with these wireless cards in Toshibas...
    Anyone have any ideas? Have I missed any info u need? Ill repost again in a day or so with the types of wireless devices in each laptop.

    Hi
    At the moment I doubt that your WLAN card is faulty. Before you exchange it you should also update your BIOS and not only the WLAN card driver. Both updates you should download from the Toshiba website:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Download Drivers
    I had a similar issue with my Toshiba notebook and WLAN connection. The problem was the WLAN power saving mode in Windows Power Management. There you can also choose a power saving mode for the WLAN card. Disable it and choose Maximum Performance.

  • New problem with wireless connection since 27th No...

    Main desktop computer (windows xp) is connected directly to the internet via ethernet cable to BTHub3. No problem exists with this  connection.
    We have previously had no problem connecting Tablet, laptop, and internet radio via wireless connection to our Hub. Problems now exist with wireless connection to all of these devices:-
    - When attempting to use any of the devices wirelessly, we are unable to obtain a connection to our Network (shown on the list of those available) - indicates -  "out of range" or "obtaining IP address" or "authenticating" or "network disabled - poor connection"
    - On occasions, the devices DO show that they are connected wirelessly but are unable to access the internet or use any programmes requiring an internet connection. Messages indicate - "no internet connection" or "connection timed out - retry" or "cannot access this webpage", even when we are in the same room as, and only a few feet away from the Hub.
    - One anomaly has occurred in that the internet radio did connect and function normally on 2 occasions recently , for a duration of a couple of hours, before loosing the connection. However, during this time, the other devices still refused to connect.
    Measures we have undertaken to try to resolve the problem are :-
    - We have visited the "Wireless troubleshooting" part of the BT Helpdesk on several occasions, but had already tried the measures suggested here, including changing channels and hub reset.
    - We have spoken at length to the BT tech. helpline who have been unable to resolve the problem.
    - We have emailed BT Help and received a reply from India suggesting all the things that we have already tried (ie. a "stock answer").
    - We are not confident enough to access the Hub Manager as we feel feel this is beyond our capability.
    We would be most grateful if someone could help us.
    Solved!
    Go to Solution.

    Wingman2, the first thing I would do is uninstall BTDesktop Help if you have it installed. It can cause more problems than it solves.
    I would also suggest that the first thing to try is a factory reset of the homehub by pressing a pin into the recess button on the rear for about 20 seconds.
    After you have done a reset if you still have problems, download, install and run inSSider. It will show you the wireless channels and which one your Homehub is on. You want to find the channel with the least congestion, ie. least number of users. Once you have that you need to change your homehub onto that channel.
    See link for insider. Use the free version.
    http://www.metageek.net/products/inssider/
    See link how to change channel on homehub
    http://bt.custhelp.com/app/answers/detail/a_id/14094
    After that if you are still having problems you could try setting the home hub to b/g only instead of b/g/n. If one of your devices is not "n" capable it could help.
    http://bt.custhelp.com/app/answers/detail/a_id/13768/session/L2F2LzEvdGltZS8xMzg4NzgxNjIyL3NpZC9Vd3p...

  • I'm having trouble with my Pavilion X2 Atom tablet connecting to WiFi

    The WiFi connection to my tablet keeps dropping out. I'm using an Iphone 4 as a hotspot. What can I do to rectify this? Can I connect to the hotspot by cable (I don't seem to be able to)? I'm a relative novice with the tabel and how it operates.

    Hey @TheSloth ,
    Welcome to the HP Forums.
    I understand you're having issues with wireless connectivity.
    The types of connections available (wired or wireless) from your iPhone are dependant on your providers limitations. Not all phone providers allow Bluetooth, USB tethering, or wireless hotspots.
    It would be best to try your wireless connection on another wireless network to confirm the symptoms are not specific to the hotspot. This is not to say that your hotspot is broken, but it will help us isolate the issue to see how to properly address it.
    In the meantime, please try the following suggestions:
    Start by going through these documents:
    Troubleshooting Wireless Network and Internet (Windows 8)
    Troubleshooting Your Wireless Network and Internet Connection (Windows 7)
    Powercycle the network:
    1. Shut down your notebook.
    2. Unplug the power to your router.
    3. Unplug the power to your modem.
    4. Wait at least 45 seconds.
    5. Plug in the modem, and wait for it to come back online.
    6. Plug in the router, and wait for it to come back online.
    7. Turn on your notebook, and test your connection.
    Disable the Power Off option for the adapter:
    1. Open Device Manager. (Win Key+R > type devmgmt.msc > OK)
    2. Expand the Network adapters.
    3. Right click on the Ethernet/Wireless Adapter and click Properties.
    4. Click the Power Management tab.
    5. Remove the check mark beside Allow the computer to turn off this device to save power.
    6. Click OK.
    7. Test.
    Reset the TCP/IP settings on your PC:
    1. Go to your start screen/menu and type CMD.
    2. Right click on the command prompt icon and chose Run as administrator.
    3. In the window that opens type "netsh int ip reset resetlog.txt" without quotes, and press enter.
    4. Restart your PC and test.
    It may also help to reset the winsock catalogue:
    1. Go to your start screen/menu and type CMD.
    2. Right click on the command prompt icon and chose Run as administrator.
    3. In the window that opens type "netsh winsock reset" without quotes, and press enter.
    4. Restart your PC and test.
    Reinstall the network adapter drivers:
    1. Download the drivers from here but do not run them yet.
    2. Go to your start screen/menu and type Device Manager.
    3. Expand Network adapters.
    4. Right click on the wireless adapter and choose Uninstall.
    5. Run the downloaded drivers from step 1.
    6. Restart your PC and test.
    Test an ethernet connection:
    Self explanatory. Test if the issue persists on a wired connection to rule out the wireless adapter hardware so troubleshooting can be directed towards the right areas.
    Test another connection:
    Many people rule out their home network as an issue if another device is working on the same network. Networking is not that simple. Each device interacts differently with your router or modem and it is impossible to rule out settings in that device until the notebook has been tested on another network.
    If those three steps do not resolve the issue, try this document published by Microsoft for networking issues: Wired and wireless network problems. You can change the operating system with the dropdown in the upper-right corner of the document.
    Thanks!
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • Having trouble with getting on messages and facetime

    having trouble with getting on messages and facetime.  Got two new ipods, one works fine, the other keeps giving us the error: iMessage Activation Could not sign in.  Please check your network connection and try again.  We have tried to reset the factory settings, and verified that the internet is working.  Please help!

    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • HT4623 Anyone having trouble with App Store install and cloud store buttons not working after 6.1 update?

    Anyone having trouble with App Store install and cloud store buttons not working after 6.1 update? I go to install an app. I hit install and nothing happens. About a minute later it asks me for my password and then it does nothing. The install button goes back to saying install. However the app shows up in my installed list and in cloud but no app installed.

    OK - I found a helpful post - closed app store app and under Settings/General/Date and Time I reset the date and time by switching off "Set Automatically" and then switching it on again. Went back to App Store, launched it and Updatesseems to be working again.
    Go figure? Logical, No!

  • My ipod touch will not switch on and is no longer recognised by itunes.  Before this i tried to restore it as I was having some problems with it switching off and on by itself randomly.

    My ipod touch will not switch on and is no longer recognized by itunes.  Before this i tried to restore it as I was having some problems with it switching off and on by itself randomly.
    I tried to restore it and I got error code 2009, so I closed it tried again got error code 1659, now it wont do anything and it's not recognized by my pc /itunes please help x

    For the restore error messages try:
    iTunes: Specific update-and-restore error messages and advanced troubleshooting

  • I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    I am having trouble with the Jpeg icons and also now thumbnails not being visable in bith teh Apple finder and now also Adobe Bridge. Can anyone shed any light on this ?

    Argh - once again, I find my solution right after posting this. Left out one modification to the SWIG script, now it runs in 29 seconds vs C 16 seconds, I can live with that.

  • Trouble with iMovie '11 transitions and themes? I'm running Lion, Mac OS X and just noticed today that the transitions and themes don't seem to be working at all when I start new projects or try to add to old projects.  What is the solve here?

    Trouble with iMovie '11 transitions and themes? I'm running Lion, Mac OS X and just noticed today that the transitions and themes don't seem to be working at all when I start new projects or try to add to old projects.  What is the solve here?
    I've seen notes about clearing the cache but it seems that this is an older OS and I can't find the plist mentioned here because it's an older system.  http://www.youtube.com/watch?v=2cL9RuDV3Qc 
    Thoughts?  Anyone? 

    GUYS, I NEED HELP !
    ANYONE?

  • I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to my laptop.

    I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to itune.

    You can't. It still thinks that your iPhone is synced with another iTunes library (the one that you had before you reformatted the hard drive.

  • Having trouble with pop-up windows and ads for MacKeeper

    I've been having trouble with pop-up windows and ads for MacKeeper and similar "services." Tried to download "MPlayerX" a week ago and it all started then. I thought I deleted the file but I'm still having trouble. I've been digging for solutions on here, but nothing I've found on here has worked yet--the VSearch stuff (I think) isn't on my hard drive. Any advice?

    You installed a variant of the "VSearch" trojan. Remove it as follows.
    This malware has many variants. Anyone else finding this comment should not expect it to be applicable.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.venus.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.venus.daemon.plist
    /Library/LaunchDaemons/com.venus.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/venus
    /System/Library/Frameworks/v.framework
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • I'm having trouble with my sound up and sound down keys. They're doing other functions. This is only a new thing.

    I'm having trouble with my 'sound up' and 'sound down' keys. They're doing other functions. This is only a relatively new thing.

    You didn't mention what those "other functions" were.  That might help!
    First thing to check is System Preferences > Keyboard > Keyboard tab - make sure "Use all F1, F2, etc. keys as standard function keys" is un-checked.  Hopefully that still works in Mountain Lion.

  • HT5621 I am having trouble with my Apple ID and AppStore Here are the steps I have taken and the results: 1.     Changed my Apple ID with new email address. 2.     Changed my iCloud with above new email address. 3.     NOW - Apple ID appears correct in Ap

    I am having trouble with my Apple ID and AppStore
    Here are the steps I have taken and the results:
    Changed my Apple ID with new email address.
    Changed my iCloud with above new email address.
    NOW - Apple ID appears correct in AppStore Settings, iCloud and AppStore*
    If I scroll to bottom of screen in *App Store/Featured, I can see that the Apple ID is my new email.
    Upon “updating” Apple ID reflects OLD email.
    Deleted accounts, re-added accounts.
    Signed out and signed in with new UN/Email
    Issue remains the same.

    To migrate your data to a new iCloud account go to Settings>iCloud and turn off all synced data (contacts, calendars, etc.), when prompted choose to keep the data on your phone.  After everything is set to off, scroll to the bottom and tap Delete Account.  Next, create the new iCloud account on your phone and turn on syncing for contacts, calendars, etc again.  If prompted, choose Merge.  This will upload your data to the new iCloud account.

Maybe you are looking for

  • Secured WebDAV Mounted Volume Authorization Issues

    I use a secure WebDAV mounted volume from myDisk.se and up until the latest Security Update have had zero issues being able to manipulate files and folders as I would on a normal volume. However, since the installation of the Security Update (2009-00

  • HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.

    HP Officejet Pro 8500A Premium will not print docs from computer, but will print a test page.  I continually get a message that the computer cannot communicate with the printer.   Not only will it not print docs, it will not print web pages using IE

  • Get export spreedsheet options in table SALV_BS_ADMIN

    Hi, Have the next issue. User in a report put option "always use this" when export a spreadsheet to excel. To change this, its need that in table SALV_BS_ADMIN change the value of GUI_ALV_XML_VER to 8, this will be making available the option again.

  • IPodService Module failed under Windows XP SP3

    Greetings. Following the install of Win SP3, my iPodService Module fails. The error is: iPodService Module has encountered a problem and needs to close. I've tried restarting it, and that didn't work. I'm running the latest version of Itunes. Have tr

  • Use 10g report to create a jsp for spreadsheet output

    Hi, I follow the example shown in Oracle® Reports Building Reports 10g Release 2 (10.1.2) Chapter 29 to build a jsp. However, the report fails to run and I get Java error as below: javax.servlet.jsp.JspException: REP-52266: The in-process Reports Ser