The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Linux driver for WLAN of Acer 1410

    Discussion in 'Linux Compatibility and Software' started by etrader, May 11, 2012.

  1. etrader

    etrader Notebook Enthusiast

    Reputations:
    0
    Messages:
    43
    Likes Received:
    0
    Trophy Points:
    15
    I just installed Ubuntu 12.04 on my Acer 1410. Everything is fine, but when using Wireless internet, fan heavily works and the temperature is high (56 C). It seem that a better driver should be installed for WLAN.

    Is there a way to automatically install the best driver?

    If not, where can I download official linux driver of WLAN?
     
  2. downloads

    downloads No, Dee Dee, no! Super Moderator

    Reputations:
    7,729
    Messages:
    8,722
    Likes Received:
    2,230
    Trophy Points:
    331
    What Wi-Fi card is it?
     
  3. etrader

    etrader Notebook Enthusiast

    Reputations:
    0
    Messages:
    43
    Likes Received:
    0
    Trophy Points:
    15
    Atheros Communications Inc. AR928X Wireless Network Adapter (PCI-Express)
     
  4. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    The AR928X is extremely common and incredibly well supported, you should have no problems with that card (I have had 4 machines with that wireless chipset).

    More likely it is a problem with your BIOS/ACPI automatic fan settings, there is a module called acerhdf to control fan settings on the Aspire. You should already have this module if you are running 12.04.

    http://piie.net/files/acerhdf_README.txt
     
  5. etrader

    etrader Notebook Enthusiast

    Reputations:
    0
    Messages:
    43
    Likes Received:
    0
    Trophy Points:
    15
    Thanks for your descriptive note, yes, I have this model. However my worry is not only fan speed, but the temperature. Reducing fan speed will not resolve the problem. Here is the temperature reported by "sensors" command


    Code:
    Adapter: ISA adapter
    Core 0:       +28.0°C  (high = +105.0°C, crit = +105.0°C)
    
    acerhdf-virtual-0
    Adapter: Virtual device
    temp1:        +57.0°C  (crit = +63.0°C)
     
  6. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
  7. etrader

    etrader Notebook Enthusiast

    Reputations:
    0
    Messages:
    43
    Likes Received:
    0
    Trophy Points:
    15
    The laptop does not seems to be that hot! You should be right about reporting wrong temperature.

    BUT, apart from temperature, I have serious problem with the Wireless. When a WiFi network on my friend's MacBook is strong, on my Acer is weak. Moreover, it takes very long time to connect to a WiFi network (sometimes I need to retry several times).
     
  8. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    To diagnose your wireless connection problems, look at /var/log/messages or /var/log/daemon.log as your connection attempt times out.

    Code:
    sudo tail -f /var/log/daemon.log
    If that doesn't yield any clues, you can start wpa_supplicant by hand after stopping network-manager:
    Code:
    sudo /etc/init.d/network-manager stop
    sudo killall wpa_supplicant
    sudo wpa_supplicant -ddu
    -dd is for more debugging verbosity, -u tells it to use dbus for interface configuration.

    Then open a new terminal window and restart network-manager:
    Code:
    sudo /etc/init.d/network-manager start
    Keep an eye on the terminal window that has wpa_supplicant running while you try to associate.