How to show and enable wireless devices

Hi, I've reinstalled arch on my Acer Aspire One..During the installation I didn't checked all the packages...Only a few which I use oftenly...Maybe I missed something? Esp. the wireless...:( I've already installed wireless-tools and added ath5k on my rc.conf..

yep.... setting ath5k  as !ath5k   can be a real help.  just got my card running. it seems that for the atheros chip cards/devices if you use ath5k  (along with the rest of i expect, by itself?) the card shows up with ifconfig  AS   wlan0   and not ath0
something like that though concept to fix is same whatever.
read all the wireless related wiki pages   3 main ones
newer cards may well use  ath5k though  and who know there may be a tip for using ath5k....
Last edited by yvonney (2009-02-05 06:25:11)

Similar Messages

  • Xbox 360 and other wireless device can't find my TC

    Hello all. Hope you had a great holidays!
    Just bought a new xbox 360 kinect and when i set this up yesterday, it couldn't find my TC 802.11 Wi-Fi Hard Drive. How can I connect it wirelessly?
    Also, my samsung blue ray player can't find it too so i have to connect it via ethernet cable.
    Any feedback is greatly appreciated! Thank you for giving your time replying to my post.
    Braulio

    Does this help: http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/photo_all_in_one_inkjet_printers/pixma_mg2920#Wireless_Help 

  • How to sign and enable rights

    I know there have been some discussions about Reader Extensions and the like, so please forgive me.  I'm new to all of this and I just don't understand.
    Is there a very simple, plain English guide on signing and enabling rights?  My agency has finally informed me that we don't have Reader Extensions, and likely won't be getting it at any point in the near future.  In order to enable user rights for people that only have Reader, is it pointless now for me to design forms in LiveCycle?  Filling in forms seems to work out OK with Reader, but there are some things I can't restrict (markup, comments, etc).  And there are some things I can't enable (adding attachments, for example).
    As really the only guy working here that seems interested in Adobe products (IT didn't even know Reader has the ability to add attachments to a document), what are my options for restricting/enabling usage rights for forms created in LiveCycle, but without the aid of Reader Extensions?  Can some/all of these rights be controlled via Acrobat X Pro? In other words, can I create a form in LiveCycle, and manage the rights enabling/restricting in Acrobat X Pro?  I would imagine that would require a digital signature or certificate. I went over to Verisign and got lost.  If I can do such things with a digital certificate, where and how would I go about obtaining one?
    Sorry, again, for such basics.  Most of the literature and discussions seem to aim at those more familiar with the products and services.

    I'm sure that others on the forum would have a better answer for you but I'm going to take a stab at this.
    Once you create the form in LiveCycle, open it in Adobe Acrobat Pro. Once open, select File/Save as and from the fly out menu select "Reader Extended PDF" and from that flyout menu, select "Enable Additional Features". Then it will ask you to save it again.
    Once you do this, the form can be filled in with the regular Adobe Reader, the form can be saved, and the form can be used for Markup tools, such as sticky notes, redaction, digital stamps with the users' name and date, and digital signatures.
    When the person selects to sign the document in the "Extended" section of Adobe Reader X, they will create a self signed signature certificate. Each signature generates it's own serial number. Unfortunately, Adobe doesn't restrict the creation of digital signatures so you can make one in your name, your dog's name, etc and yet all the signatures will validate and look absolutely legitimate.
    And unfortunately, the same is true of digital stamps. All you have to do is right click the stamp and you can change the sign on id and forge another's stamp.
    I hope this helped for what you are trying to do. Good luck.

  • HELP!How to show # and * in the textfield

    I am trying to show a # and * in the textfield in this telephone keypad interface. What's wrong with my coding? How can I show # and *? Whenever I press # and * on the keypad I get a Null or Infinity statement, when I just want # and * to show up instead. I had converted a calculator applet into a telephone applet to make into an keypad interface.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class TelephoneApplet extends Applet implements ActionListener
    private Button keysArray[];
    private Panel keyPad;
    private TextField lcdField;
    private double result;
    private boolean first;
    private boolean foundKey;
    static boolean clearText;
    private int prevOperator;
    public void init()
    lcdField = new TextField(20);
    keyPad = new Panel();
    keysArray = new Button[12];
    first = true;
    result = 0.0;
    clearText = true;
    prevOperator = 0;
    setBackground(Color.magenta);
    lcdField.setEditable(false);
    for ( int i=0; i<=9; i++ )
    keysArray[ i ] = new Button(String.valueOf(i));
    keysArray[10] = new Button( "*" );
    keysArray[11] = new Button( "#" );
    // set keyPad layout to grid layout
    keyPad.setLayout(new GridLayout(4,3,10,10));
    for ( int i=1; i<=9; i++ ) //adds buttons 1-9 to Panel
    keyPad.add( keysArray[i] );
    /* for (int i = 4; i <= 6; i++) //adds buttons 4, 5, and 6 to Panel
    keyPad.add( keysArray[i] );
    for (int i = 7; i <= 9; i++) //adds buttons 7, 8, 9, and divide to Panel
    keyPad.add( keysArray[i] );
    keyPad.add( keysArray[10] ); //adds star button to Panel
    keyPad.add( keysArray[ 0 ] ); //adds 0 key to Panel
    keyPad.add( keysArray[11] ); //adds infinity button to Panel
    for (int i = 10; i >= 11; i--)
    keyPad.add( keysArray[i] ); //adds keys to Panel
    setLayout(new BorderLayout());
    add( lcdField, BorderLayout.NORTH );
    add( keyPad, BorderLayout.CENTER );
    for(int i = 0; i < keysArray.length; i++)
    keysArray.addActionListener(this);
    public void actionPerformed( ActionEvent e)
    foundKey = false;
    //Search for the key pressed
    for (int i = 0; i < 12 && !foundKey; i++)
    if(e.getSource() == keysArray[i]) //key match found
    foundKey=true;
    switch(i)
    case 0: case 1: case 2: case 3: case 4: //number buttons
    case 5: case 6: case 7: case 8: case 9:
              //0 - 9
    if(clearText)
    lcdField.setText("");
    clearText = false;
    lcdField.setText(lcdField.getText() + keysArray[i].getLabel());
    break;
    case 10:
    case 11:
    clearText = true;
    if (first) // first operand
    if(lcdField.getText().length()==0)
    result = 0.0;
    else
    result = Double.parseDouble(lcdField.getText());
    first = false;
    prevOperator = i;
    else //second operand already entered, so calculate total
    switch(prevOperator)
    case 10: //divide button
    result /= Double.parseDouble(lcdField.getText());
    break;
    case 11: //multiply button
    result *= Double.parseDouble(lcdField.getText());
    break;
    lcdField.setText(Double.toString(result));
    if(i==14) //equal button
    first = true;
    else
    prevOperator = i; //save last operator
    break;

    you need to change the following piece of code
    case 10:   // * pressed
    case 11:   // # pressed
    clearText = true;
    if (first) // first operand
    if(lcdField.getText().length()==0)
    result = 0.0;
    else
    result = Double.parseDouble(lcdField.getText());
    first = false;
    prevOperator = i;
    else //second operand already entered, so calculate total
    switch(prevOperator)
    case 10: //divide button
    result /= Double.parseDouble(lcdField.getText());
    break;
    case 11: //multiply button
    result *= Double.parseDouble(lcdField.getText());
    break;
    lcdField.setText(Double.toString(result));
    if(i==14) //equal button
    first = true;
    else
    prevOperator = i; //save last operator
    break;
    }its gets excuted when you press the * or # buuton

  • How to disable and enable a java bean area's visability?

    I have a large javabean area on my initial canvas when first dispalying my form.
    When I use the SHOW_CANVAS('canvas name') to display another canvas, everything looks fine except that the javabean from my previous canvas is still visible and covering up portions of this new canvas.
    So I tried using the set_property visible for the javabean area in the form and it only got rid of the surrounding edge of the javabean area.
    Last I made some set_custom_property values to send to the bean that would then use java calls to enable and disable the beans visability.
    But once the beans visibility was disabled in Java then it wouldn't come back after the calls to enable the visibility and refresh the bean were made through Java calls.
    Is there any other ways of disabling and enabling a java bean area's visability?
    Thanks,
    Michelle

    Hello,
    Maybe the bean is always display because of its particular paint() method ?
    Anyway, without any reflexion, I could suggest you to set the bean item width and height to 1 pixel when you don't want to display it. (Set_Item_Property)
    Francois

  • I would like to know how to DELETE icloud from my iMAC desk top. Would it automrically have synced with my wife's I pad, and other wireless devices, or is it all seperate

    Can anyone help me out ?
    I would like to get info on how to DELETE
    iCLOUD from my desk top MAC.
    Would it already have synced to the iPAD?
    Apple does not give any info on the iCLOUD,
    in a proper way to DELETE..for that matter,
    I can't even find "SETTINGS" on my Mac,
    let alone settings for iCLOUD.Any info
    would be better than what Apple gives up.
    Apple is useless when trying to get any information!

    You have to search with some patience and you will find all the informations on the Apple support pages and here in this forum.
    You find i Cloud in SAFARI at www.icloud.com and set as you like.
    Usually iCloud sincs all the devices which have the same AppleID.
    If you wish to use devices for different persons you need to give them different AplleID and on the MAC create different User Accounts. Each will be fully separate.
    Or you can go to settings (settings are to be found under the apple icon on top left of the screen) and from there open Sistem Preferences and iCloud.

  • Can I create a portable ad-hoc network between an iPad and other wireless devices?

    I have a iPad that uses a third-part app to connect to and read data from a wireless hard drive.  This works great in my house over my local network.   What I want to do is create an ad-hoc network to use in my car or other remote site to basically just allow the wireless connection between the two devices, with no internet connection.   I have used an ad-hoc network in the past to sync data between my iPad and my iMac, so theoretically it should be possible, but I can't seem to find out how to do it using the iPad to create the network.  Is there a support article discussing this?   Has anyone out there tried doing this?   Any help would be appreciated.

    Thanks for the reply, but I must not have made myself clear.  I'm not looking for internet or 3G service.  All I want is a temporary network to share data over.  I have lots of movies and videos stored on a wireless hard drive and I just want to be able to access them in the car while on trips or on vacation.  It works in my house even when we lose our internet connection.  The cable modem is off-line and the Airport Extreme light glows orange, but the wireless network still works.  I guess that I could set up an iPhone as a hotspot and pay extra for a service I would only need sporadically, but I'm hoping that there is an alternative.

  • How to connect and manage multiple devices against one computer/account?

    I have 2 i phones, 2 i Pads and 2 i Touches and need to maintain unique photos/music/apps on each device.  How do I do this using 1 i tunes account and 1 computer?

    Open itunes, connect iphone, select what you want, sync, disconnect iphone.
    Connect other iphone, select what you want, sync, disconnect iphone.
    Connect ipad, select what you want, sync, disconnect ipad.
    Connect other ipad, select what you want, sync, disconnect ipad.
    Connect ipod, select what you want, sync, disconnect ipod.
    Connect other ipod, select what you want, sync, disconnect ipod.

  • How to install and run USB device application without NI-VISA environment?

    Hi everyone:
          I develop a LabWindows/CVI8.5 application that uses a driver for a USB device created using the NI-VISA 4.6.2. The application is ok when the NI-VISA  environment is installed in PC. But the  NI-VISA 4.6.2 is too big(326M).  Can be the USB device successfully installed in non-development machine without NI-VISA 4.6.2?  Just need some files, such as INF, NiViUsbK.sys and ni-visa32.dll, the device will be installed and run.   If the way is feasible, please tell me how to do. Which files are necessary to the device is installed in non-development machine without NI-VISA 4.6.2 environment? It is so big, I need a minimum NI-VISA system.
          I need your help.

    Personally I use the open source LibUSB. It links without difficulty with
    CVI. And it works both on Linux and Windows, which is a big plus. Haven't
    touched it in 2 years though.
    Guillaume Dargaud
    http://www.gdargaud.net/

  • How to show and hide plots which are stacked and plotted on the one graph?

    I am currently designing a Logic Analyser with 8 channels. These are plotted on a graph, stacked on top of each other. The user is able to select which plots he/she wishes to examine (i.e 1,4,6). I need to figure out how to hide the plots not required and show the plots needed.

    Hi,
    Did u say stacked?? then you must be using a chart not a graph
    Nevertheless, as Unclebump has suggested, here is a Vi to give you an idea on how to use active plot and visible property nodes
    Build on it to hide/show plots
    Regards
    Dev
    Message Edited by devchander on 01-24-2006 06:09 AM
    Attachments:
    plot.vi ‏176 KB

  • How to disable and enable a Hardware Card on my Mac

    Hi all,
    I have a system with2 BlackMagicDesign (BMD) Decklink cards in it. One HD Extreme and one HD Extreme 3D+ card.
    I use it to capture multiple video streams at once and it works perfectly. I can choose to input and output card for audio, etc...
    But I have software that can use a BMD Decklink card as 3th monitor or VideoOut Monitor.
    That software always chooses the HD Extreme Card, and I cant choose it manually...
    I need the software to use the Decklink 3D+ card (because it has a HDMI 1.4 out and works in Stereo3D)
    If I remove the second card, all works perfectly, but I want to avoid to do that...
    In Windows you can easily disable hardware....
    But, can we do that in MacOSX 10.7??
    thx for your hrlp,
    Steven.

    Don't know if this will work for your specific setup or not, but SwitchResX is a unique utility for controlling video configurations (including enabling/disabling multiple monitors).

  • How to show and hid the elments in WSDL using wscompile

    Hi Folks,
    I have web service interfce
    public interface DataObjectProcess extends Remote
    DataObject jobRequest(DataObject aDataObject) throws RemoteException, Exception;
    my DataObject is like this
    public class DataObject implements java.io.Serializable
    pivate Integer commandKey;
    private File outputFile;
    public DataObject(){}
    public void setCommandKey(Integer aKey)
    commandKey = aKey;
    public Integer getCommandKey()
    return commandKey;
    public void setOutputFile(File aFile)
    outputFile = aFile;
    public File getOutputFile()
    return outputFile;
    I use wscompile to generate WSDL file, but it can not show outputFile element in WSDL? How can I do that.
    For commandKey element. if I don't want to show this element in WSDL. How to do it? Thank you very much.
    Edgy

    Hi Folks,
    I have web service interfce
    public interface DataObjectProcess extends Remote
    DataObject jobRequest(DataObject aDataObject) throws RemoteException, Exception;
    my DataObject is like this
    public class DataObject implements java.io.Serializable
    pivate Integer commandKey;
    private File outputFile;
    public DataObject(){}
    public void setCommandKey(Integer aKey)
    commandKey = aKey;
    public Integer getCommandKey()
    return commandKey;
    public void setOutputFile(File aFile)
    outputFile = aFile;
    public File getOutputFile()
    return outputFile;
    I use wscompile to generate WSDL file, but it can not show outputFile element in WSDL? How can I do that.
    For commandKey element. if I don't want to show this element in WSDL. How to do it? Thank you very much.
    Edgy

  • How to disable and enable Check box based upon condition

    Hi,
    I wants to disable/hide the check box field before the required field is filled.   Kindly help me

    Hi Mohammed,
    Try to use customize InfoPath form, add rules. Go to list tab, click customize Form, then this opens the list form in InfoPath
    format.
    1.Select the check box field control, click add rules, select if is blank, show validation error action.
    2.Then go to conditions, click column name is blank, change it to the required column you want.
    3.Go to rule type, click validation, change it to formatting, select hide this control.
    4.Publish the InfoPath form.
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • TS4000 How to show and change Fonts, color, etc, on iCloud NOTES ?

    How can I apply the same features as in this toolbar make text
    modifications in my iCloud "NOTES" ??

    Notes on icloud is very limited.
    Tell Apple...
    http://www.apple.com/feedback/

  • No Wireless device when maverick install failed.  how can I get my wireless back?

    I walked away as Maverick download started.  When I returned, it was at the login screen. 
    After logging in, I was still at 10.8.5 and the wireless device was gone.
    How should I proceed.  I have wired access still.
    rich

    Ari,
    Thanks for your time.
    Later on the 27th, I connected the MacBook to a wired Internet line and finished the Maverick installation.  The wireless was still listed as "no device found".  I tried holding down the D key on cold boot, to get hardware diagnostics, but I never saw a message saying where the results were stored.
    Tonight, when I got home, I turned on the MacBook and my wireless device has awaken from its two day slumber and it is working again.  I will try to get some info from the system logs, but right now, the revival has no explanation.
    cheers,
    rich

Maybe you are looking for