Ideapad N585 wifi (AR9285) does not work in Linux

Hi, I'm using Ubuntu Precise (12.04.1) and I cannot get the wifi card (AR9285) to activate properly as it is "physically blocked". The BIOS is configured to have the WLAN on. Using fn+F5 to turn on/off the wifi only affects the "software block":
fn+F5 (deactivate):
# rfkill list
0: ideapad_wlan: Wireless LAN
    Soft blocked: yes
    Hard blocked: no
2: phy0: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes
fn+F5 (activate):
# rfkill list
0: ideapad_wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: yes
I tried various workarounds mentioned in https://bugs.launchpad.net/ubuntu/+source/linux/+bug/577114 with no success.
If anyone has an idea, I would really appreciate it.
Thanks,
Simon

Hi sdeziel,
thanks for posting.
I'm not not very well verse with the Ubuntu OS but have played a little with it. But in regards to ur enquiry maybe the 2 two links below might help. Just be informed that I don't guarantee how successful or if the fix can help and by following this link is at your own risk.
http://linuxplained.com/how-to-fix-atheros-ar9285-ar9287-wireless-problems-in-ubuntu-1104/
http://linuxplained.com/fix-atheros-ar9287-wireless-card-problems-in-ubuntu/
hope this helps.
regards

Similar Messages

  • HT201412 my wifi button does not working / it looks grey and can not open it... and my some applications does not working too ... please help me ... I bought this I phone from Beirut/Lebanon and i live in Turkey...

    my wifi button does not working / it looks grey and can not open it... and my some applications does not working too ... please help me ... I bought this I phone from Beirut/Lebanon and i live in Turkey...

    Here you go:
    http://support.apple.com/kb/ts1559

  • JCombox does not work under linux (fedora) could you help me???

    Hi All,
    I am implementing a GUI for a linux application. This GUI works fine under windows system. But the JCombobox does not work under Linux system. Would you help me to solve it? Thank you very much!..
    The problem is that I cannot select any other item except the first item in the dropdown box of JCombobox. There is no event generated when I click the combobox, while events are generated for other Buttons.
    This problem exists for the following code when I maximize the window. When the window is minimize to some extend in my problem, it is OK.
    Here is the simplify code:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.Serializable;
    import java.util.Vector;
    import javax.swing.ComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.event.ListDataEvent;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    import java.awt.event.*;
    import javax.swing.*;
    //carmen
    import javax.swing.filechooser.*;
    import javax.swing.event.*;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.border.*;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    import java.io.*;
    import java.util.*;
    import java.lang.String.*;
    public class Test extends JFrame
         private JComboBox jComboBox1;
         private JComboBox jComboBox2;
         private JPanel contentPane;
         private JTabbedPane jTabbedPane1;
         //Main Tab
         private JPanel Main;
         private JPanel OutputSimSet;
         private JPanel Test;
         private JPanel ScriptGenTab;
         private JPanel ResultTab;
    //Result Tab
    private JPanel SimResult;
         public Test()
              super();
              //initializeComponent();
              contentPane = (JPanel)this.getContentPane();
              jTabbedPane1 = new JTabbedPane();
              Main = new JPanel();
              OutputSimSet = new JPanel();
              Test = new JPanel();
              ScriptGenTab = new JPanel();
              ResultTab = new JPanel();
              SimResult = new JPanel();
         jComboBox1 = new JComboBox(
                        new String[]{"Item 1","Item 2", "Item 3"});
                        jComboBox1.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ae) {
                        System.out.println("Yeah");
         jComboBox2 = new JComboBox(
                                  new String[]{"Item 1","Item 2", "Item 3"});
                                  jComboBox2.addActionListener(new ActionListener() {
                                  public void actionPerformed(ActionEvent ae) {
                                  System.out.println("Yeah");
              // jTabbedPane1
              jTabbedPane1.addTab("Main", Main);
              jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
              jTabbedPane1.addTab("Simulation Result", ResultTab);
              jTabbedPane1.addChangeListener(new ChangeListener() {
                   public void stateChanged(ChangeEvent e)
                        jTabbedPane1_stateChanged(e);
              // contentPane
              contentPane.setLayout(new BorderLayout(0, 0));
              contentPane.add(jTabbedPane1, BorderLayout.CENTER);
              // Main
              //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Main.setLayout(new BorderLayout(0, 0));
              Main.add(OutputSimSet,BorderLayout.NORTH);
              OutputSimSet.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              OutputSimSet.add(Test, 0);
              Test.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Test.add(jComboBox1,0);
              //ResultTab
              ResultTab.setLayout(new BorderLayout(0, 0));
              ResultTab.setBorder(new TitledBorder(""));
              ResultTab.add(SimResult, BorderLayout.NORTH);
              SimResult.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              SimResult.add(jComboBox2,0);
              // Test
              this.setTitle("Test");
              this.setLocation(new Point(0, 0));
              this.setSize(new Dimension(600, 500));
              this.setVisible(true);
         public void initializeComponent()
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
              System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jComboBox1_actionPerformed(ActionEvent e)
              System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
              Object o = jComboBox1.getSelectedItem();
              System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
              // TODO: Add any handling code here for the particular object being selected
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Create and set up the window.
    Test frame = new Test();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    package oct03_JCBox;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class Test extends JFrame
    private JComboBox jComboBox1;
    private JComboBox jComboBox2;
    private JPanel contentPane;
    private JTabbedPane jTabbedPane1;
    //Main Tab
    private JPanel Main;
    //private JPanel OutputSimSet;
    //private JPanel Test;
    private JPanel ScriptGenTab;
    private JPanel ResultTab;
    //Result Tab
    //private JPanel SimResult;
    public Test()
         super();
         //initializeComponent();
         contentPane = (JPanel)this.getContentPane();
         jTabbedPane1 = new JTabbedPane();
         Main = new JPanel();
         ScriptGenTab = new JPanel();
         ResultTab = new JPanel();
    //     OutputSimSet = new JPanel();
    //     Test = new JPanel();
    //     SimResult = new JPanel();
         jComboBox1 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent ae) {
              System.out.println("Yeah");
         jComboBox2 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox2.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   System.out.println("Yeah");
         // Main
         //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.add(jComboBox1);
         //ResultTab  -----     
         ResultTab.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         ResultTab.add(jComboBox2);
        //      jTabbedPane1
         jTabbedPane1.addTab("Main", Main);
         jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
         jTabbedPane1.addTab("Simulation Result", ResultTab);
         jTabbedPane1.addChangeListener(new ChangeListener() {
              public void stateChanged(ChangeEvent e)
                   jTabbedPane1_stateChanged(e);
         // contentPane
         contentPane.setLayout(new BorderLayout(0, 0));
         contentPane.add(jTabbedPane1, BorderLayout.CENTER);
         // Test
         this.setTitle("Test");
         this.setLocation(new Point(0, 0));
         this.setSize(new Dimension(600, 500));
         this.setVisible(true);
         public void initializeComponent()
    //     /** Add Component Without a Layout Manager (Absolute Positioning) */
    //     private void addComponent(Container container,Component c,int x,int y,int width,int height)
    //     c.setBounds(x,y,width,height);
    //     container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
         System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
         // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
    //     private void jComboBox1_actionPerformed(ActionEvent e)
    //     System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
    //     Object o = jComboBox1.getSelectedItem();
    //     System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
    //     // TODO: Add any handling code here for the particular object being selected
         * Create the GUI and show it. For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
         private static void createAndShowGUI() {
         //Create and set up the window.
         Test frame = new Test();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.pack();
         frame.setVisible(true);
    public static void main(String[] args) {
         //Schedule a job for the event-dispatching thread:
         //creating and showing this application's GUI.
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
         public void run() {
         createAndShowGUI();
    } Try this - you use too many unnecessary JPanels.
    Which way you prefer with actionPerformed should work either way.
    I think your problem was too many unnecessary Panels and set all attributes before it is added, perhaps,
    not add the panel first and then try to set attributes like layout, color, etc...

  • Java applet works in windows and does not work in linux

    Hello, guys!
    I'm working with site which is located in vpn network at work.
    I use browsers firefox 3 and opera.
    When I want to open java applet using firefox or opera at first everything is fine then on the last stage of loading(judging by progress bar) applet hangs(progress bar hangs) and when I reload page firefox shows in the bottom bar: applet <applet's name> bail.
    In windows everything works both in ie6 and firefox 3.
    On both environments I have the jre 6 installed.
    please help!

    Ok, I installed ies4linux and jre 1.5.16. I can work with that but when I start applet screen goes black and window frames dissapear.
    To solve this problem(feature?) I disabled DirectX-based acceleration for Java 2D but that works for javacpl.exe and does not work for my applet.

  • Itunes wifi sync does not work after upgrade to OS X Yosemite

    Hi,
    After upgrade to OS X Yosemite itunes wifi sync with my ipad and iphone stopped working. After attaching the iphone and ipad with a cable, I could sync, but as soon as the cable was removed, the ipad and iphone disappeared again from itunes. And wifi did still nok work.

    Apparently something is not being saved somewhere and this technique forces the save.  Below is a C&P from another poster describing the technique on a different thread.  It's been working for him for some fifteen hours.  I tried it and it's been working but it's been only ten minutes.  My gut feel is that quitting and relaunching iTunes are critical steps.
    With the device connected via cable, click on its icon
    Uncheck WiFi syncing
    Click Apply
    Quit iTunes
    Launch iTunes
    Check WiFi syncing
    Click Apply

  • Encoding ISO-8859-1 does not work on linux machine

    Hi all
    I have an xsl with encoding ISO-8859-1 .So in this xsl I put special character like &#8364; that rappresent the Euro (money) symbol.
    So when I use that xsl on a window machine everithing is all right.When I use a Linux machine that code are not correctly mapped..
    Why?
    Help
    Regards

    actually I have a different mapping for �....on
    window it maps the space...on linux it maps A^....
    Any idea?How exactly are you determining that it is not working?
    Are you printing it to the screen? Are you using String.getBytes() and then printing the byte value? What are you doing?

  • ITunes 11.1.5 wifi sync does not work

    I have 10 wireless devices and an Apple Mac Mini with Mavericks and iTunes 11.1.5 and alll devices are running iOS 7.1.1.  I noticed the other day that none of my devices have backed-up since late March and none of my devies have connected through wifi.  I have attempted a shutdown, a stop process of the AppleMobileDeviceHelper and restart the iTunes and even did the stop process of AMDH shut-down/restart and then attempted the iTunes wifi sync to no avail.  Anyone have the same problems?
    Devices are Airport Extreme Base-station, Airport Extreme (Tower), and Airport Extreme TimeCapsule
    Mac Mini (Latest), two MacBook Air (Latest)
    Multiple iPhones from 5s, 5, and 4s
    2 iPad second gen
    2 iPad mini Retina

    In case there is any confusion, iTunes did WiFi sync to iOS devices for years.  It was rumored that Apple stopped it but only for a time.  However, iTunes always had a check box for selecting WiFi syncing for the selected device.  If you hook up the device by USB, select it on the left panel and go to the Summary tab, you will see a box "Sync with this iPhone over WiFi".  Some trouble shooters have suggested unchecking, clicking apply, quit iTunes, then restart and recheck.  In the past that would occasionally work for me.  Now it doesn't work at all.
    The really odd part.  Often when I quit and restart iTunes (maybe reboot the Mac), the iOS devices will indeed appear in the list (when not connected via USB).  However, selecting them simply brings up a progress indicator that disappears 30secs later and the device name disappears from the list.
    Apple, if you can hear us, please FIX THIS!

  • My wifi conection does not work on my 3G iphone

    my 3g phone will not connect to wifi.  I am using OS 4.2.1

    That's too bad.
    What have you tried?

  • Runtime.exec() does not work under Linux

    Hi,
    I have a generic application runner class that runs an external
    program and redirects stdout/stderr to a buffer/file.
    While everythings works just fine under Windows, I get the
    following exception under Linux trying to run the Java interpreter
    'java':
    java.io.IOException: "/usr/lib/SunJava2-1.3.1/jre/bin/java": not found
    at java.lang.UNIXProcess.forkAndExec(Native Method)
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:139)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:546)
    at java.lang.Runtime.exec(Runtime.java:413)
    I have checked that the file /usr/lib/SunJava2-1.3.1/jre/bin/java
    exists.
    Any help appreciated!
    Marc

    can I ask how you solved it? I am having a problem
    with quotes just now to and it might help me!I simply tested what the current platform is and
    only used quotes under Windows.
    Marc

  • Drag and Drop does not work In Linux

    I have a asimple application that displays the file name and path when a file is dragged and dropped from Windows Explorer to a Java Frame. However, the same operation bombs in Linux. Please advise.

    Hello SixSigma
    I found the way for GNOME but not KDE.
    Here's a little code:
      public boolean importData(JComponent c, Transferable t) {
        if (canImport(c, t.getTransferDataFlavors())) {
          try {
            DataFlavor[] flavors = t.getTransferDataFlavors();
            for (int i = 0; i < flavors.length; i++) {
              // Drop from Windows
              if (DataFlavor.javaFileListFlavor.equals(flavors)) {
    if (t.getTransferData(DataFlavor.javaFileListFlavor) instanceof
    java.util.List) {
    java.util.List fileList = (java.util.List) t.getTransferData(
    DataFlavor.javaFileListFlavor);
    if (fileList.get(0) instanceof File) {
    File f = (File) fileList.get(0);
    // Do whatever with the file
    abrirArchivo(f);
    return true;
    return false;
    return false;
    // Drop from GNOME
    else if (DataFlavor.stringFlavor.equals(flavors[i])) {
    if (t.getTransferData(DataFlavor.stringFlavor) instanceof String) {
    String path = (String) t.getTransferData(DataFlavor.stringFlavor);
    path=dropDesdeGnome(path);
    if (path!=null) {
    File f = new File(path);
    // Do whatever with the file
    abrirArchivo(f);
    return true;
    return false;
    return false;
    catch (UnsupportedFlavorException e) {
    e.printStackTrace();
    return false;
    catch (IOException e) {
    e.printStackTrace();
    return false;
    return false;
      public boolean canImport(JComponent c, DataFlavor[] flavors) {
        for (int i = 0; i < flavors.length; i++) {
          if (DataFlavor.javaFileListFlavor.equals(flavors)) {
    return true;
    else if (DataFlavor.stringFlavor.equals(flavors[i])) {
    return true;
    return false;
      // Take selection's first file and put off the starting "file://" and the "\n"
      private String dropDesdeGnome(String path) {
        if (path.startsWith("file://")) {
          return path.substring(7, path.indexOf("\n")-1);
        return null;
      }Have tested with GNOME 2.2 and 2.6.
    If anyone achieve drop from KDE, please, post it (I love KDE).
    KoKo
    Eneko Nieto
    Universidad Publica de Navarra
    Area de Telematica
    [email protected]

  • PAGESTREAM=YES does not work in LINUX Env

    Hi ,
    Where in the application server can we specify, the cache directory the browser or apache has to look for the report output after report has run.
    MY issue is that , I run a report and the browser shows it up. But when i add the parameter pagestream=YES in the report URL ,it says page not found.
    This happens in a linux environment but not when the same report is run ona 10gas windows env.
    Any help in this regard is appreciated
    Thanks,
    Ashok

    Hello,
    Did you check the HTML code returned to the browser ?
    Menu View -> Source.
    When PAGESTREAM=YES is added, some HTML code is returned
    to the browser with FRAMESET and FRAME tags in order to
    "split " the window in two. a BASE HREF tag is added too.
    Can you check this tag BASE HREF ?
    Regards

  • Link in pdf-file does not work on Ipad

    With my site www.bartkuijer.nl I offer visitors the free possibility to see (and download) sheetmusic, from music written by me. These are pdf-files. But they can not only SEE the sheetmusic; the music on that pdf-files can also be PLAYED. That's done bij clicking on a link in that pdf-file to a mp3-file of the music on my site.
    This works fine on a pc. When I try this on the Ipad of my wife it DOES NOT WORK!
    So my question is: how come? And what to do to make this work also fine on an Ipad.
    This is important for me, because I want this sheetmusic to place as Ipad-apps for free.

    It works!
    But not with a pdf-file. The Ipad does not recognize links in a pdf-file.
    Te solution is found by making a htm-file with emdedding a quicktime-player and images of the music. This is my first Ipad product. On a pc the player starts immediately; on the Ipad it has to be started.
    Now I have to work on a solution to change this to an app

  • Error: ELM does not work from UI

    Hello guru´s,
    hard to explain this briefly, but here it goes.
    We´re trying to upload an ELM from UI, and it doesn´t work. But the thing is, if you just SAVE from UI (not launch), and then you go to CRMD_MKTLIST and you flag required fields, it works. But obviously, we need to do that from UI.
    Besides this, we´ve implemented a Badi CRM_MKTLIST_BADI for a specific format but it´s never called from UI; however, if we simulate the execution from SAP GUI, this BADI works correctly.
    Thanks in advance.

    SunSudio Express (December 2006 release) introduces some
    interesting new features, but there are still problems. For the first time,
    I was able to debug Fortran 90 applications in Linux, but debugging is
    still very limited. This is good to know that you were able to debug a f90 application
    on Linux. What problems do you see? Please, report them, and we
    will file them as bugs or RFEs (requests for enhancements).
    Furthermore, the Fortran error parser does not work, even when
    compiling using Sun's f95 compiler. Yes, you are right, this feature does not work yet.
    This is a heavy disadvantage. I assume that Fortran error parsing
    is not supported on Linux, although the tutorials don't make this
    point clear: Yes, it does not work yet on all platforms.
    In the Options window, there are settings concerning C/C++ (and
    its parser), but there are no similar options for the Fortran parser,
    even in "Advanced Settings" (which are similar to the old Options
    window). There will be similar options for Fortran.
    My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.JDK 1.5.0.09 is ok.
    We do not target Debian system, but we assume everything
    should work there (we test on Red Hat and SUSE).
    Good to know that our assumption is correct :-)
    I don't think that I'm doing something wrong, but I want to ask, just
    to be sure: has someone had seen the Fortran error parser working
    on Linux? No. It does not work on Linux, and it does not work on other platforms.
    What about Fortran word completion? No, this feature is not implemented yet.
    Thanks you for trying Sun Studio 12 Express release and for your report.
    Nik

  • Error Parser does not work, even in SSX3

    SunSudio Express (December 2006 release) introduces some interesting new features, but there are still problems. For the first time, I was able to debug Fortran 90 applications in Linux, but debugging is still very limited. Furthermore, the Fortran error parser does not work, even when compiling using Sun's f95 compiler. This is a heavy disadvantage. I assume that Fortran error parsing is not supported on Linux, although the tutorials don't make this point clear: In the Options window, there are settings concerning C/C++ (and its parser), but there are no similar options for the Fortran parser, even in "Advanced Setings" (which are similar to the old Options window). My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.
    I don't think that I'm doing something wrong, but I want to ask, just to be sure: has someone had seen the Fortran error parser working on Linux? What about Fortran word completion?

    SunSudio Express (December 2006 release) introduces some
    interesting new features, but there are still problems. For the first time,
    I was able to debug Fortran 90 applications in Linux, but debugging is
    still very limited. This is good to know that you were able to debug a f90 application
    on Linux. What problems do you see? Please, report them, and we
    will file them as bugs or RFEs (requests for enhancements).
    Furthermore, the Fortran error parser does not work, even when
    compiling using Sun's f95 compiler. Yes, you are right, this feature does not work yet.
    This is a heavy disadvantage. I assume that Fortran error parsing
    is not supported on Linux, although the tutorials don't make this
    point clear: Yes, it does not work yet on all platforms.
    In the Options window, there are settings concerning C/C++ (and
    its parser), but there are no similar options for the Fortran parser,
    even in "Advanced Settings" (which are similar to the old Options
    window). There will be similar options for Fortran.
    My Linux system is Debian 3.1 (Sarge), with JDK 1.5.0.09.JDK 1.5.0.09 is ok.
    We do not target Debian system, but we assume everything
    should work there (we test on Red Hat and SUSE).
    Good to know that our assumption is correct :-)
    I don't think that I'm doing something wrong, but I want to ask, just
    to be sure: has someone had seen the Fortran error parser working
    on Linux? No. It does not work on Linux, and it does not work on other platforms.
    What about Fortran word completion? No, this feature is not implemented yet.
    Thanks you for trying Sun Studio 12 Express release and for your report.
    Nik

  • Wireless not working in linux, but works fine in windows vista

    Hello!
    I have installed Unbreakable Enterprise Linux 4 in a dual boot config. with Window Vista on a Compaq Presario laptop. After install completed I found that my on board Broadcom Wireless Adapter (Dell 1390 Mini PC card) was not recognized. I have tried installing NDISwrapper versions 1.48 and later 1.47 (after uninstalling 1.48) because everytime I got to the "modprobe ndiswrapper" received a fatal error about an unknown symbol or parameter, and on install I also encountered a "CONFIG_4KSTACKS" error as well. The good part is the light on my laptop for the wireless adapter finally came on and the driver (bcmwl5.inf) appears to be installed and the wireless adapter identified as being present, but it still doesn't show up in the network manager gui interface. So I am out of ideas if any one can give me a suggestion for a solution I would appreciate it.

    Hi there,,,,,
    I have Oracle Enterprise Linux 5 installed and Intel wifi 5100 card installed on my laptop. Wireless card does not work in Linux it works fine with Vista, I have dual boot. I have downloaded and installed the microcode for the wireless card for Linux,,,it is now active but it does not take ip address from dhcp and nor does it connect when i supply manual ip. it does not even scan for any wireless network. I have WEP enabled on my wireless network. It just says disconnected.....
    Please help me.....i have been trying to get this thing work for 3 weeks.
    thanks.

Maybe you are looking for