Results 1 to 2 of 2

Thread: acerhk Ubuntu 14.04 TravelMate 292

  1. #1
    Join Date
    Mar 2011
    Beans
    5

    acerhk Ubuntu 14.04 TravelMate 292

    http://ubuntuforums.org/showthread.php?t=1708093

    Hi,
    I have the same problem of the above post.
    How do I make the kernel module for Ubuntu 14.04?

    Thank you very much!

    Tried the acerhk GUI but with no success...

    Edit: I have found a solution!
    It consists in downloading the package: https://launchpad.net/~gruenertee/+a.../ubuntu/acerhk
    and compiling it as follows:
    become root:
    Code:
    sudo su
    go to the acerhk path:
    Code:
    cd /usr/src
    extract the acerhk-source:
    Code:
    tar -xjf acerhk.tar.bz2
    After extracting you have to change to:
    Code:
    cd /usr/src/modules/acerhk
    compile acerhk-module:
    Code:
    make
    (maybe compiling fails with the latest kernel in 14.04 cause something changed in kernel >3.13 and i am not sure if it is backported - so if it fails please send me the console output)

    copy the module to another directory:
    Code:
    cp acerhk.ko /lib/modules/$(uname -r)/kernel/ubuntu/
    register module for the kernel:
    Code:
    depmod -A
    load the module:
    Code:
    modprobe acerhk force_series=290 usedritek=1 verbose=5
    (i think there are 3 verbose-levels, so verbose=5 gives us all output on dmesg)

    activate the wireless-adapter (its not just the led, its the whole adapter):
    Code:
    echo 1 > /proc/driver/acerhk/wirelessled
    In order to enable automatically acerhk at startup, edit file:
    Code:
    /etc/init.d/rc.local
    and append the following two lines at the end of it:
    Code:
    modprobe acerhk force_series=290 usedritek=1 verbose=5
    echo 1 > /proc/driver/acerhk/wirelessled
    Last edited by ZioAlfredo; February 8th, 2015 at 10:38 PM. Reason: Found a solution

  2. #2
    Join Date
    Sep 2015
    Beans
    1

    Re: acerhk Ubuntu 14.04 TravelMate 292

    Thank you kindly!

    I initially couldn't enable the hardware-disabled wifi on my Acer Aspire ES 15 running Ubuntu 14.04.
    Your solution worked perfectly!

    The hardware re-disables wifi upon shutdown or sleep, so I added a few lines to my .bashrc so I could enable it by opening a terminal (ctrl + alt + t)

    Code:
    rfkill list | if grep "Hard blocked: yes"; then
       echo "Enabling Wifi"
       modprobe acerhk force_series=290 usedritek=1 verbose=5
       echo 1 > /proc/driver/acerhk/wirelessled
    fi

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
  •