Showing posts with label 3820tg. Show all posts
Showing posts with label 3820tg. Show all posts

Monday, April 2, 2012

Acer TimelineX Configuration on Ubuntu 12.04

Since I've recently upgraded from 11.04 to 12.04 I thought it would be good to share my experience with other Acer TimelineX 3820tg owners. 

Fixes from the kernel: 
  • All of the 'atom bios' video issues appear to be gone
  • You'll no longer need to tweak the trackpad
Screen Brightness Configuration
Fix the screen brightness - unless you apply this, you will not be able to increase/decrease brightness on this computer (thus sucking battery life):
  • As root navigate to (you can do this by entering "gksu nautilus") and edit : /etc/default/grub
  • Change the line GRUB_CMDLINE_LINUX="" to GRUB_CMDLINE_LINUX="acpi_osi=Linux"
  • save the file
  • and then (in a terminal): sudo update-grub
  • reboot 
Radeon blacklisting
First, open /etc/modprobe.d/blacklist.conf as root (I always use "gksu nautilus" to open the file manager as root and then navigate there). Once you have opened it with a text editor add the following line add the end:
blacklist radeon
Once you have done that, save the file and close the text editor. When you reboot, the system will no longer try to use the radeon card.

Note: If you plan on using the Radeon card, don't perform the blacklist step. 


Using Switcheroo
You'll need to do this in order to tell your system to use the Intel chipset instead of the radeon (blacklisting is not enough).
Now open /etc/rc.local (still as root) and add the following lines BEFORE 'exit 0'

modprobe radeon
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
Again, save the file. Now the radeon module will be re-loaded, vgaswitcheroo will be reenabled and the ATI card will be turned off. Cooler, quieter and better battery life.

Saturday, December 3, 2011

Fix touchpad scrolling on Acer 3820tg with patched driver

After reinstalling Natty (botched attempt at moving to Oneiric Unity/Gnome3) I was reconfiguring my system. while looking up the imps mouse fix I found a post on the Ubuntu forums which referred to a synaptic bug with a patched driver.

With the patched driver the touchpad indicator finally works on my TimelineX 3820tg! Yippeee!

Here's the bug: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/550625

Here's the link to the driver: http://people.canonical.com/~sforshee/alps-touchpad/psmouse-alps-0.9/psmouse-alps-dkms_0.9_all.deb

An updated driver can be found here: http://people.canonical.com/~sforshee/alps-touchpad/psmouse-alps-0.10/psmouse-alps-dkms_0.10_all.deb
This version appears to be the one that will be added to the 3.3 Linux Kernel.

Hybrid graphics on the 3820tg running Ubuntu 11.04 (natty)

My Acer TimeLineX 3820TG has served me pretty well over the last year.  The only complaint I have against the laptop is the fact that it has "hybrid graphics".

The concept is nice -- you use the full powered Radeon HD5650 w 1gb of ram whenever you want performance (and plugged into power) and the integrated Intel GPU whenever you want power savings.

Unfortunately it doesn't play nice with Linux.  Their are no official drivers to support it.

Some of the issues encountered are:

  1. very loud fans
  2. laptop runs hot 
  3. unpredictable suspend 
  4. VERY poor battery life
  5. computer freezes at bootup (B[lack]SOD)
To fix these issues you'll have to do some tweaking to the configuration of the system. 

The first thing you will want to do is turn off the Radeon GPU. To be honest, there's no real reason to use it under Linux unless you are doing some heavy 3D gaming.  The Intel chipset is fine for normal 3d acceleration (esp., running HD video, running compiz, etc).

In order to fix issues 1-4 you need to use 'switcheroo' to switch to the chipset you want to use (i.e. the intel chipset). 

Switcheroo and Radeon blacklisting

First, open /etc/modprobe.d/blacklist.conf as root (I always use "gksu nautilus" to open the file manager as root and then navigate there). Once you have opened it with a text editor add the following line add the end:
blacklist radeon
Once you have done that, save the file and close the text editor.
Now  open /etc/rc.local (still as root) and add the following lines BEFORE  'exit 0'
modprobe radeon 
 echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
Again, save the file. Now the radeon module will be re-loaded, vgaswitcheroo will be reenabled and the ATI card will be turned off. Cooler, quieter and better battery life.

This should fix the issues, however, if you continue to have the Black Screen of Death on bootup (i.e., the system freezes on start-up) it's likely the known issue with the 2.6.38 kernel (used in natty).

In order to fix it, you can install the patched linux kernels found on this post:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/727620/comments/160

you'll need to know if you are running 32bit or 64bit Linux and choose the appropriate files. For me, I've installed the folliwing on my 64bit system (in this order):


References: 
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/727620
http://askubuntu.com/questions/39562/radeon-module-boot-problems

Monday, May 2, 2011

Basic configuration For the Acer TimelineX 3820TG

After upgrading to Ubuntu 11.04 (Natty) there are some things you will need to do. I'll start this with the easy stuff.

1. Fix the screen brightness - unless you apply this, you will not be able to increase/decrease brightness on this computer (thus sucking battery life):
  • As root navigate to (you can do this by entering "gksu nautilus") and edit : /etc/default/grub
  • Change the line GRUB_CMDLINE_LINUX=""    to  GRUB_CMDLINE_LINUX="acpi_osi=Linux"
  • save the file
  • and then (in a terminal): sudo update-grub
  • reboot
2. To enable vertical scrolling with the trackpad do the following:
  • Navigate to /etc/modprobe.d/
  • Make a file called psmouse.conf and paste this text into it:
options psmouse proto=imps
  • save as root in the folder (you should already be there) /etc/modprobe.d/
  • that's it. 
EDIT: I've found a touchpad driver which doesn't require any system tweaking at all. Just install this file:
http://people.canonical.com/~sforshee/alps-touchpad/psmouse-alps-0.9/psmouse-alps-dkms_0.9_all.deb

The source of the driver can be found here.

My next post on this computer will cover the switchable graphics card which will be a little bit more technical. Until we do that, you'll only have about 2.5 hours of battery life.

If you are feeling brave, you can always find this info in the Ubuntu forums.