View Poll Results: Did this work for you?

Voters
72. You may not vote on this poll
  • Yes

    26 36.11%
  • Almost

    19 26.39%
  • No

    27 37.50%
Results 1 to 10 of 107

Thread: HOW TO: Installing the acer_acpi module - activates wireless on Acer laptops

Threaded View

  1. #1
    Join Date
    Jun 2006
    Location
    London, UK
    Beans
    227

    Lightbulb HOW TO: Installing the acer_acpi module - activates wireless on Acer laptops

    Last updated on 29/07/2006 21:03 GMT.

    ATTENTION: This HOW TO covers ONLY the installation of the acer_acpi module and NOT of the wireless adapter drivers.

    Before you can go ahead and install the acer_acpi module you need to make sure you have some other tools installed.
    Code:
    sudo aptitude update
    sudo aptitude install build-essential
    UPDATED:
    You'll also need the linux headers:
    Code:
    sudo aptitude install linux-headers-$(uname -r)
    END OF UPDATE

    Once this is done you can go ahead and install the acer_acpi.
    First you should create a folder to keep all your downloads in one place.
    Code:
    mkdir /home/USER_NAME/download
    Where USER_NAME is your actual user name.

    Now go to the new folder
    Code:
    cd /home/USER_NAME/download
    and download and install the package:
    Code:
    wget http://www.archernar.co.uk/acer_acpi/acer_acpi-0.3.tar.gz
    tar zxvf acer_acpi-0.3.tar.gz
    cd acer_acpi-0.3
    make
    sudo make install
    cd ../..
    Load the acer_acpi into memory and activate the wireless:
    Code:
    su
    modprobe acer_acpi
    chmod 777 /proc/acpi/acer/wireless
    echo "enabled: 1">/proc/acpi/acer/wireless
    exit
    And check if it worked:
    Code:
    dmesg | grep acer_acpi
    You should get some output like this:
    Code:
    [17179594.992000] acer_acpi: Acer Laptop ACPI Extras version 0.3
    [17179595.000000] acer_acpi: Wireless value 1
    Right, this might have worked for now but you need to load and activate acer_acpi every time your computer starts.
    For this you can write a little start up script so you don't have to do it manually each and every time.

    ATTENTION!
    For Gnome type:

    Code:
    sudo gedit /etc/init.d/acer_acpi_wireless_enable
    Or if you're running KDE type:
    Code:
    sudo kate /etc/init.d/acer_acpi_wireless_enable
    Paste the following code and save:
    Code:
    #!/bin/sh
    
    case "$1" in
    
            start|"")
    
                    modprobe acer_acpi
    
                    chmod 777 /proc/acpi/acer/wireless
    
                    echo "enabled: 1" >/proc/acpi/acer/wireless
    
                    ;;
    
            stop)
    
                    echo "enabled: 0" >/proc/acpi/acer/wireless
    
                    modprobe -r acer_acpi
    
                    ;;
    
    esac
    Make the file executable and add it to the appropiate linux run levels.
    ATTENTION! Don't miss ANY of the characters in the following lines, especialy the dots in the third line!
    Code:
    su
    chmod 755 /etc/init.d/acer_acpi_wireless_enable
    update-rc.d acer_acpi_wireless_enable start 39 S . start 34 0 6 .
    exit
    Now check if it worked:

    Code:
    ls /etc/rcS.d/S39acer-acpi-wireless-enable
    ls /etc/rc0.d/S34acer-acpi-wireless-enable
    ls /etc/rc6.d/S34acer-acpi-wireless-enable
    If you get any No such file or directory messages then something must have gone wrong during the last couple of steps but your acer_acpi is still installed and can be started manually if needed.

    If you didn't get any error messages everything should be up and running. You can now restart the computer and, if you have already installed the wireless drivers, your wireless adapter should work fine and be ready to configure.
    Last edited by ovimunt; July 29th, 2006 at 09:07 PM. Reason: Further details added.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •