Results 1 to 5 of 5

Thread: Ubuntu 12.04 - Acer Aspire E1-572, Backlight, touchpad, Ethernet

  1. #1
    Join Date
    Jul 2008
    Location
    India
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    Ubuntu 12.04 - Acer Aspire E1-572, Backlight, touchpad, Ethernet

    1. Brightness control
    /etc/default/grub

    then change

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""

    to

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
    GRUB_CMDLINE_LINUX="acpi_osi=Linux"


    To default set the brightness control at boot
    gksudo gedit /etc/rc.local

    #!/bin/sh -e
    #
    # rc.local
    #
    # This script is executed at the end of each multiuser runlevel.
    # Make sure that the script will "exit 0" on success or any other
    # value on error.
    #
    # In order to enable or disable this script just change the execution
    # bits.
    #
    # By default this script does nothing.
    echo 85 > /sys/class/backlight/intel_backlight/brightness
    exit 0

    Replace 85 with your requirement of brightness level

    2. Latest kernel upgrade to 3.10(Ref: http://ubuntuhandbook.org/index.php/...tu-linux-mint/)
    mkdir mainline_3.10


    wget http://kernel.ubuntu.com/~kernel-ppa...1435_amd64.deb

    wget http://kernel.ubuntu.com/~kernel-ppa...181435_all.deb

    wget http://kernel.ubuntu.com/~kernel-ppa...1435_amd64.deb

    sudo dpkg -i linux-headers-3.10.17-*.deb linux-image-3.10.17*.deb

    Reboot

    3. Ethernet Driver( Broadcom Corporation NetXtreme BCM57786 Gigabit Ethernet PCIe)

    https://www.broadcom.com/support/eth...me_desktop.php (tg3)

    Download driver from broadcom - linux-3.133d.zip
    unzip
    tar xvzf tg3-<version>.tar.gz
    cd src
    make
    insmod tg3.ko
    make install

    check with ifconfig in the terminal


    4. Touchpad
    rmmod psmouse
    modprobe psmouse proto=imps
    vim /etc/modprobe.d/touchpad.conf
    options psmouse proto=imps

    5. Enable Hibernation mode


    Shell prompt
    sudo pm-hibernate

    gksu gedit /etc/polkit-1/localauthority/50-local.d/com.ubuntu.enable-hibernate.pkla
    [Enable Hibernate]
    Identity=unix-user:*
    Action=org.freedesktop.upower.hibernate
    ResultActive=yes

    Logout and Login

    This will add the Hibernate option in system settings , hibernate, shutdown, suspend

    Regards,
    Vinay Simha BN
    Last edited by simhavcs; December 7th, 2013 at 09:00 AM.

  2. #2
    Join Date
    Jan 2014
    Beans
    16

    Re: Ubuntu 12.04 - Acer Aspire E1-572, Backlight, touchpad, Ethernet

    Quote Originally Posted by simhavcs View Post

    3. Ethernet Driver( Broadcom Corporation NetXtreme BCM57786 Gigabit Ethernet PCIe)

    https://www.broadcom.com/support/eth...me_desktop.php (tg3)

    Download driver from broadcom - linux-3.133d.zip
    unzip
    tar xvzf tg3-<version>.tar.gz
    cd src
    make
    insmod tg3.ko
    make install

    check with ifconfig in the terminal



    Regards,
    Vinay Simha BN
    insmod tg3.ko fails. Either file is corrupt or its not compatible with the kernel update above.
    Last edited by marc13; June 16th, 2014 at 06:17 PM.

  3. #3
    Join Date
    May 2014
    Location
    /home
    Beans
    10,927
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Ubuntu 12.04 - Acer Aspire E1-572, Backlight, touchpad, Ethernet

    Quote Originally Posted by marc13 View Post
    There is no src folder after tar command. The folder simply does not exist and I cannot commit to a make. Any solution for this problem?
    Is there a /src folder in the extracted files?

  4. #4
    Join Date
    Jan 2014
    Beans
    16

    Re: Ubuntu 12.04 - Acer Aspire E1-572, Backlight, touchpad, Ethernet

    I solved it. The /src folder was not there, the folder layot was different, but the approach is similar.

  5. #5
    Join Date
    Jul 2008
    Location
    India
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    Upgrading 12.04 to 14.04 - Acer Aspire E1-572

    Upgrading 12.04 to 14.04 - Acer Aspire E1-572

    1. Upgrage using the 14.04 .img (Default kernel 3.13 have some issues regarding brightness, uart, wifi, display drivers, so upgraged to 3.15)

    2. Dowload the kernel - 3.15.0-031500-generic
    wget http://kernel.ubuntu.com/~kernel-ppa...1105_amd64.deb

    wget http://kernel.ubuntu.com/~kernel-ppa...131105_all.deb

    wget http://kernel.ubuntu.com/~kernel-ppa...1105_amd64.deb

    sudo dpkg -i linux-headers-3.15.0-*.deb linux-image-3.15.0-*.deb

    Reference :- http://ubuntuhandbook.org/index.php/...x-kernel-3-15/

    3. For brightness control
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"

    Regards,
    Vinay Simha BN
    Last edited by simhavcs; August 18th, 2014 at 04:59 PM. Reason: upgrading 12.04 to 14.04 LTS

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
  •