855resolution
1280x768
Linux (Ubuntu)
Averatec 1050
02/17/2006
Here is how I was able to get the 1280x768 resolution to wok on my Averatec 1050 running Ubuntu Linux. I am not very good at Linux so it was a hassle for me to figure this out ... so I am hoping this will help at least one person out there.
Step one:
Download the 855resolution tar file: http://perso.wanadoo.fr/apoirier/
(Thank you Mr. Poirier!!!!)
unzip, untar, make, make install
Follow his instructions to replace one of your unused modelines with 1280x768 (or what ever resolution you are shooting for). Here is an example. Typing '855resolution -l' gives your modes. In my case the 3c line was NOT 1280x768 like it shows here:
root@COBRA:~# 855resolution -l
855resolution version 0.4, by Alain Poirier
Chipset: 855GM (id=0x35808086)
VBIOS type: 2
VBIOS Version: 3411
Mode 30 : 640x480, 8 bits/pixel
Mode 32 : 800x600, 8 bits/pixel
Mode 34 : 1024x768, 8 bits/pixel
Mode 38 : 1280x1024, 8 bits/pixel
Mode 3a : 1600x1200, 8 bits/pixel
Mode 3c : 1280x768, 8 bits/pixel
Mode 41 : 640x480, 16 bits/pixel
Mode 43 : 800x600, 16 bits/pixel
Mode 45 : 1024x768, 16 bits/pixel
Mode 49 : 1280x1024, 16 bits/pixel
Mode 4b : 1600x1200, 16 bits/pixel
Mode 4d : 1280x768, 16 bits/pixel
Mode 50 : 640x480, 32 bits/pixel
Mode 52 : 800x600, 32 bits/pixel
Mode 54 : 1024x768, 32 bits/pixel
Mode 58 : 1280x1024, 32 bits/pixel
Mode 5a : 1600x1200, 32 bits/pixel
Mode 5c : 1280x768, 32 bits/pixel
Mode 7c : 1280x768, 8 bits/pixel
Mode 7d : 1280x768, 16 bits/pixel
Mode 7e : 1280x768, 32 bits/pixel
To get that 3c line to read my desired 1280x768, one uses the command:
855resolution 3c 1280 768
The problem is that this modification only holds until you reboot. So, you have to run this command each and every time you reboot. Create a script called 855start that contains the following single line:
855resolution 3c 1280 768
Now put this script in /etc/init.d and chmod +x it. For some reason, I next ran:
update-rc.d 855start defaults 80
Now, 855start will run when you reboot ... but will it run at the right time. This is where the sage advice of “wildcard” comes in. See his post at http://ubuntuforums.org/showthread.php?t=24923
This was huge for me. Following his instructions, cd to /etc/rc.d. type dir. Find SXX855start where XX is a two digit number. Find also SYYgdm. You have have XX < YY. For me, my XX was 80 (because of the update-rc.d command I ran) and my YY was 13. That is, I had S80855start and S13gdm. I also had no numbers S06--- to S10---. So, doing as wildcard did, I copied S80855start to S09855start.
Almost there ...
Just need to modify xorg.conf. Here is mine.
In case you need the 855resolution that I used, here is mine ...
sha1sum is;
69ff7ebb08e530fec8d94ce1d7d51a787eade01c 855resolution-0.4.tar