Making the Acer Aspire One 751 work with Linux
Posted: 25 Feb 2011, 13:13
One of the worst cards for Linux is the Intel poulsbo 500GMA chipset, because Xorg is not suporting it anymore. It is safe to say that AAO is NOT a Linux compatible laptop.

It will work with most distros but only with 1024x768 resolution. This makes the small 11.6" screen almost useless.
Nevertheless the 1366x768 is can be tweaked and made to work! This is good because Linux makes a much better job of exploiting the scarce resources on AAO than Windows XP.
In particular a slim Linux distro like Archlinux:
I installed Arch (With Gnome/gdm)and installed this from AUR.
Then I "followed" this readme
I listed the possible resolutions on the lap with
And got:
I then set the resolution in table 49 to 1366x768 because I do not need 1280x770 anyway:
and I now had:
Take a close look at Mode 49!
I restarted X and it worked!
The problem now of course was to make it happen everytime because the resolutions is reset on every boot - what to do?
I put a line in /etc/rc.local
I is necessary to write the solution to the Bios before x starts:
Boot and all is good.

It will work with most distros but only with 1024x768 resolution. This makes the small 11.6" screen almost useless.
Nevertheless the 1366x768 is can be tweaked and made to work! This is good because Linux makes a much better job of exploiting the scarce resources on AAO than Windows XP.
In particular a slim Linux distro like Archlinux:
I installed Arch (With Gnome/gdm)and installed this from AUR.
Then I "followed" this readme
I listed the possible resolutions on the lap with
Code: Select all
sudo 915resolution -l
And got:
I then set the resolution in table 49 to 1366x768 because I do not need 1280x770 anyway:
Code: Select all
sudo 915resolution 49 1366 768and I now had:
Take a close look at Mode 49!
I restarted X and it worked!
The problem now of course was to make it happen everytime because the resolutions is reset on every boot - what to do?
I put a line in /etc/rc.local
I is necessary to write the solution to the Bios before x starts:
Code: Select all
usr/sbin/915resolution 49 1366 768
Boot and all is good.