My laptops that don't have a linksys card, but built in wireless can stay connected to WEP

I have a linksys WRT54GS Version 5, firmware 1.51.0 (updating after this)

Ikester wrote:
Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
1. I set up everything, its all fine and ok
2. The DS can't connect to WPA, only WEP or Open
3. I know what my WPA settings are and the codes to both settings

Similar Messages

  • Tutorial: Virtual Numpad on laptops that don't have one built-in

    Hi all! After getting so much good help from the people on Arch forums, I thought it was time to give back.
    You remember how on older laptops, you would hit numLock and a portion of your keyboard would become a numpad? (specifically, the 789uiojklm keys) Well, recently I got a new Lenovo Y40 and I never knew how much I loved having a numpad until I found that my new laptop didn't have one. Unfortunately, the Y40 does not come with this feature out of the box, but luckily, Arch Linux is on our side. I am going to tell you how I set up my own virtual numpad using tools that come built-in with X.
    Before we start, I should point out that everything I learned in order to do this was found here:
    https://wiki.archlinux.org/index.php/X_ … _Modifiers
    From the warnings section:
    It is possible (and, in fact, easy) to end up disabling some keys on your keyboard for the current X session while working with XKB. This includes modifiers, cursor arrows and Enter key, as well as C-A-Backspace and C-A-Fx combinations. Make sure you have some way to terminate the session without using your keyboard.
    While it is rare, changing XKB configuration can sometimes hang or crash X server. Make sure you can handle it. Having some way to killall X or reboot the host remotely may be a good idea.
    Stop xxkb, or any other layout switching applications. xxkb actively changes XKB state. Debugging both at the same time is not a good idea.
    And finally, be warned: it is very easy to get used to custom layout.
    If you want to learn more, that wiki article is the best available xkbcomp documentation for people who aren't X developers (lit. me). And with that, let's get started!
    Getting Set Up + xkb Background Info
    The first thing we will do is run the command
    xkbcomp $DISPLAY outfile.xkb
    This will spit out the code that represents the current keyboard layout. Our end goal will be to code in what we need into this file, and upload it back to the X server. I recommend editing this file in an editor with C/C++-style syntax highlighting, since it might prevent you from making syntactical errors.
    There are many sections to the .xkb file, but we will only concern ourselves with xkb_types, xkb_compatibility, and xkb_symbols.
    xkb_types lets you define types for each of the keys on your keyboard. For example, if you use Canadian Multilingual Standard (like I do) most of your keys are given the type "EIGHT_LEVEL_SEMIALPHABETIC". When a "special key" like ctrl, alt, caps lock, etc is pressed, in xkb_types, we map these modifiers to "LevelN", and different combinations will mean different things for different types. For 8-level-semialphabetic, no special keys pressed is "Level1", Shift is "Level2", etc.
    If we jump forward to xkb_symbols, and look at the keys, we see that each key is assigned a type, and an array. The first element in the array is what symbol the key represents for Level1, the second is the symbol for Level2, etc.
    Finally, xkb_compatibility allows us to set which keys turn on which modifiers (as well as other things).
    So with that, let's get started
    Editing the layout
    We will begin by editing the xkb_types section. First, we will pick an unused type from xkb_types (you could create your own, but it will be more work). It doesn't matter which type you picked, so long as none of your keys use it. Take down the name. Now delete the unused type, and in its place, copy paste the type that your keys used already. Finally, change the name of the copy to the type you deleted. For example, I deleted EIGHT_LEVEL_ALPHABETIC, copied and pasted EIGHT_LEVEL_SEMIALPHABETIC, and changed the name on the copy back to EIGHT_LEVEL_ALPHABETIC. Next, change the modifiers variable to accept NumLock. This is done by concatenating '+NumLock' before the semicolon. Lastly, we will bind it to a level. You can create a level, or simply pick one that you were not using, and add the line (where N is the desired Level)
    map[NumLock]= LevelN;
    Next, we will turn our attention to xkb_compatibility. Simply copy paste this code into the xkb_compatibility section, taking care to replace Scroll_Lock with the key you wish to use to toggle the numpad:
    interpret Scroll_Lock {
    virtualModifier= NumLock;
    action= LockMods(modifiers=NumLock);
    Now comes the more tedious part of editing the layout. For every key that is part of your virtual numpad, change the type to the copy we made earlier. (In my example, I would change EIGHT_LEVEL_SEMIALPHABETIC to EIGHT_LEVEL_ALPHABETIC). Finally, locate the Nth element in the array (indexing from 1) where N is the level you bound the NumLock modifier to in xkb_types. Replace this with the desired nunmpad key. For your convenience, here is a list of the numpad keys I used:
    KP_0
    KP_1
    KP_2
    KP_9
    KP_Add
    KP_Subtract
    KP_Divide
    KP_Multiply
    KP_Decimal
    For example, here is the entry for my 'u' key (note the KP_4):
    key <AD07> {
    type= "EIGHT_LEVEL_ALPHABETIC",
    symbols[Group1]= [ u, U, NoSymbol, NoSymbol, downarrow, uparrow, NoSymbol, KP_4 ]
    If you are wondering what to do if you want to bind numpad keys to your Fx keys, I added a note at the end of the post.
    Uploading the layout to the X Server
    And now the moment of truth. First, run
    xkbcomp myNewLayout.xkb
    This will NOT upload to the X Server yet; it will only compile the file and check its syntax. One cryptic error I got was because I used C-style /*block quotes*/. xkbcomp doesn't like these, but it doesn't mind //this kind of comment. If we have no errors, we can now upload with
    xkbcomp myNewLayout.xkb $DISPLAY
    Well, go ahead and try it out, there will almost surely be some really neat tweaks you can do.
    Extra Stuff/Notes
    When you hit Scroll_Lock (or whichever key it was you chose) it locks the new type we made to LevelN. This is why we went to the trouble of making a new type, so that the rest of the keyboard would not be locked in LevelN mode. For example, on my setup, I first tried this without creating a new type, and found that the rest of my keyboard was not behaving normally, since it was also bound to Level8 (my desired numpad level). So, I created a new type for my numpad keys so that the rest of the keyboard would still act in its usual manner even when I had the numpad on.
    If you're wondering, I bound KP_Multiply and KP_Divide to my F8 and F9 keys. However, I didn't need to change the type, since the level I chose (Level4) also caused the Fx keys to act normally (except if I rebound them). That is, before I changed anything, all the Fx had the corresponding Fx key bound to Level4. I simply changed the Level4 keybinds for F8 and F9. This meant that when I activated the virtual numpad, F8 and F9 were KP_multiply and KP_Divide, and the rest of the function keys were what they were usually.
    Hopefully, this tutorial won't only help you to make a virtual numpad, but maybe help some other newbies like me to further customize their system. And the Arch Wiki author is right, you really do get used to the new layout and it becomes frustrating to use other computers!
    Happy trails.
    - Marco
    Last edited by mahkoe (2014-11-02 12:17:49)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • Office live states I don't have firefox or explorer but I do. Can't get into my site to make changes because of this

    My web site is hosted in office live small business. Recently something changed and now I get a message when I try to log in that I must have Explorer or firefox to use the site. I have both but they are not being recognized by office live. I have contacted Microsoft and they say my account is working properly on their end. What to do??

    If you already created an Apple ID, you have to enter a credit card in order to use that ID now. If you don't have a credit card at all, you will have to create a new Apple ID to use without a credit card and you will need to have another email address in order to do this.
    First you will have to sign out of your current ID in Settings> iTunes & App Store>Apple ID. You can tap the ID and tap Sign Out. Now you can proceed with creating a new Apple ID according to the instructions in here.
    Create iTunes Store account without credit card - Apple ...
    You are saying that you don't have a credit card, but if you had one, you could enter the credit card in order to use the ID that you already created, but you never have to use it. You can use gift cards or just download free content. But unless you create the ID as outlined above, you must enter payment details.

  • When trying to rent a movie from Apple TV, I'm asked to verify my payment method.  I don't have a credit card but I do have over $100 dollars in iTunes store credit.  How do I get passed this in order to be able to rent movies again?

    When trying to rent a movie from Apple TV, I'm asked to verify my payment method.  I don't have a credit card but I do have over $100 dollars in iTunes store credit.  How do I get passed this in order to be able to rent movies again?

    so i dont understand why i wouldnt be able to purchase the $14.99 movie (unless there's tax or something, but i dont think so?)
    Yes, there is tax.

  • I just bought a iPhone 5c with Verizon and I have a contract with Verizon but I don't have a SIM card but the former owner left theirs in it can I use it

    I just bought a iPhone 5c with Verizon and I have a contract with Verizon but I don't have a SIM card but the former owner left theirs in it can I use it

    Waylon07 wrote:
    does the verizon store sell nano sims because inever them on the site
    A Verizon corporate store can provide you with a nano SIM and activate it for you. Corporate stores do not charge for SIMS. I don't know what a reseller might or might not do.

  • HT2534 hi i don't have a credit card but do have debit card can i create apple id with it or i can never use this service

    hi i don't have a credit card but do have debit card can i create apple id with it or i can never use this service

    Accepted forms of payment  >  http://support.apple.com/kb/HT5552
    If necessary...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT201209 If I redeem an iTunes gift card on an account that does not have a credit card or NONE as payment, can I gift apps to other accounts?  It will not let me. Please advise.

    If I redeem an iTunes Gift Card to an Apple ID that does not have a credit card (or NONE is selected as payment option),  can I gift an app to another account?
    I can purchase apps on that account but it will not allow me to gift an app  from an ipad or via the itunes store (on the computer). Do I need to have a credit card on the account to be able to do that?

    You can only gift via a credit card - you can only use your account's balance for buying content for yourself.

  • Hi I don't have a credit card but would pay parcel post cod, if not can pay interact

    You contact the seller and ask if that is an acceptable alternative payment. I suspect most will not go for COD as a choice. 

    You can back a Paypal account with your bank account or with a balance you have deposited with them.But a credit card is the most secure. You can use a prepaid credit card in some situations, but since the possession of a card is also used as a confirmation of creditworthiness, not in every situation. Without a credit card, most online purchasing is closed to you.So are many other daily transactions like renting a hotel room or buying a car. Just remembering my first job out of high school as a bank teller, and making up the paypackets, in cash, for the guys at the Goodyear plant. And my pet dinosaur, Tyrone. *sigh*

  • I don't have a credit card but i do have a itune card that won't allow me to type the number in

    frist off all thanks for getting me this far i been tring to sign in for 3 weeks

    Are you following the steps in this article?
    http://support.apple.com/kb/HT1574
    If you are, where exactly are things breaking down for you?

  • My iphone says searching for network, and I don't have any sim card on it. What can I do?

    I just bought a new iphone, It doesn't has any sim card putted on it, but on the left upper corner it says searching for network, and I cannot activate this.. What can I do?

    ive got the same prob on my 4s i usually have to hard reboot a couple tims with no sim
    steps i go through
    1. turn on airplane mode
    take out sim
    2. hard reboot
    3.turn back on then turn off airplane a couple a times if didnt work 1st time
    another way that worked for me is turn on airplane mode then reset network settings and reboot with out sim in
    but the longest this worked for me was maybe 3 or 4 days  it a temp fix.. it just went to searching again about 5 mins ago and i used my first way to fix it, get it  to say no sim and then i put sim back in. note it has to say no sim when its on the way to be working

  • I don't have any VISA card, can I skip that part?

    I don't have any VISA card but to use app store I have to fill in Visa card numbers, can I skip that part? I only want to download a free app

    See this link for information about using the "None" option for a payment method:
    Why can’t I select None when I edit my Apple ID payment information? - Apple Support
    Cheers,
    GB

  • I don't have a credit card.

    I don't have a credit card but want to register my account so I can download apps.  How do I do this without a credit card if I already have an apple account.

    Not to be the Grinch (in keeping with the season) ...
    Some people (such as I) ONLY have gift cards for store credit due to far too many reports of credit accounts being hijacked through iTunes and then the account needs to be frozen or cancelled and restarted under a new number.

  • How do I get rid of the Microsoft Setup Assistant loop? I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word, and stuck in a loop?

    I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word (for 2008), and stuck in a loop?
    Whenever I select Word Microsoft Setup Assistant appears, asks for feedback, then after selecting okay (both on saying yes or no to feedback) goes on to a registration page. When I click on this it says I've already registered so I just click okay, and then move on to a update page. After this, if I click on Word, the process repeats itself.
    As I said, I don't have the disk to reinstall, and can't find the Office Settings to delete as many pages have suggested I should try. Safe Boot restarting also hasn't worked... Really stuck and need Word very soon for work.
    If you can help, that would be great, and feel free to ask any questions about the situation as I'm not an expert here.
    Cheers,
    Jack

    First, export your contact from iCloud.com and save them on your computer in a safe spot some where (like you desktop).  Use this to help you do this: http://support.apple.com/kb/PH3606
    Next, on both of your devices, go to Settings > iCloud and turn on contacts and select Merge. Then turn off contacts and select 'Delete form my [device]' when prompted.
    Now go back to iCloud.com and select a contact (yes they will all be messed up again) and select Command+A on a Mac or Control+A on a PC to select all of the contacts.  Tap the delete key on your keyboard (or right click /control click a contact and select delete).
    You iPhone, iPad and iCloud.com should not be empty for contacts.
    Go back to Settings > iCloud on both devices and turn on contacts again (you should not see merge this time).
    Next, go back to iCloud.com and import your contacts (those exported .vcards).  You can either drag and drop them into the empty contacts list in your web browser, or you can use the gear icon to import.
    You cleaned up contacts should import correctly into iCloud.com and sync to both of your devices.
    Good luck.

  • I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.

    I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.  This feature seems to be lost in the Mountain Lion upgrade.  Did Apple feel that once Mountain Lion came out that EVERYONE would have Apple TV?  There are no settings in System Preferences/Display like there used to be...only for AirPlay Mirroring.

    Running a cable to the HDMI port is still supported. (and still works on mine).
    If the Arrangement tab in System Preferences > Displays isn't present then it doesn't recognize the physical connection.  Double check all cables.  If that doesn't work try a PRAM reset:
    http://support.apple.com/kb/ht1379

  • I've downloaded some free games for my iphone4 but they are using my internet because they have ads. does anyone know if there are any games that don't have these ads and don't require internet AT ALL?and if i disable my internet connexion, does it help?

    i've downloaded some free games for my iphone4 but they are using my internet because they have ads. does anyone know if there are any games that don't have these ads and don't require internet AT ALL?and if i disable my internet connexion, does it help?

    Thank you. I put it in airplane mode like you suggested, but it looks to me like all the applications and ads are still running. Anyway, I'm just gonna play when I'm really really bored and use them as less as possible. Thank you again for your quick answer.

Maybe you are looking for