I've tried on multiple occasions to get the 915resolution hack to work, to no avail.
I'll go through it step by step one more time to see if I'm doing something wrong.
So far so good. I'll change the Mode 38, just like in the example on the site.Code:corey@Ubuntu:~$ sudo 915resolution -l Intel 800/900 Series VBIOS Hack : version 0.5.2 Chipset: 845G BIOS: TYPE 2 Mode Table Offset: $C0000 + $3de Mode Table Entries: 18 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 : 1920x1440, 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 : 1920x1440, 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 : 1920x1440, 32 bits/pixel
No problem there - the resolution I want is inserted into the lines that I don't use.Code:corey@Ubuntu:~$ sudo 915resolution 38 1366 768 Intel 800/900 Series VBIOS Hack : version 0.5.2 Chipset: 845G BIOS: TYPE 2 Mode Table Offset: $C0000 + $3de Mode Table Entries: 18 Patch mode 38 to resolution 1366x768 complete corey@Ubuntu:~$ sudo 915resolution -l Intel 800/900 Series VBIOS Hack : version 0.5.2 Chipset: 845G BIOS: TYPE 2 Mode Table Offset: $C0000 + $3de Mode Table Entries: 18 Mode 30 : 640x480, 8 bits/pixel Mode 32 : 800x600, 8 bits/pixel Mode 34 : 1024x768, 8 bits/pixel Mode 38 : 1366x768, 8 bits/pixel Mode 3a : 1600x1200, 8 bits/pixel Mode 3c : 1920x1440, 8 bits/pixel Mode 41 : 640x480, 16 bits/pixel Mode 43 : 800x600, 16 bits/pixel Mode 45 : 1024x768, 16 bits/pixel Mode 49 : 1366x768, 16 bits/pixel Mode 4b : 1600x1200, 16 bits/pixel Mode 4d : 1920x1440, 16 bits/pixel Mode 50 : 640x480, 32 bits/pixel Mode 52 : 800x600, 32 bits/pixel Mode 54 : 1024x768, 32 bits/pixel Mode 58 : 1366x768, 32 bits/pixel Mode 5a : 1600x1200, 32 bits/pixel Mode 5c : 1920x1440, 32 bits/pixel
So from there, I edit my xorg file...
Which has the following:Code:corey@Ubuntu:~$ sudo gedit /etc/X11/xorg.conf
Awesomesauce. Moving on, I add the startup script so I don't have to run this hack every time I start up X.Code:# /etc/X11/xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the /etc/X11/xorg.conf manual page. # (Type "man /etc/X11/xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" FontPath "/usr/share/X11/fonts/misc" FontPath "/usr/share/X11/fonts/cyrillic" FontPath "/usr/share/X11/fonts/100dpi/:unscaled" FontPath "/usr/share/X11/fonts/75dpi/:unscaled" FontPath "/usr/share/X11/fonts/Type1" FontPath "/usr/share/X11/fonts/100dpi" FontPath "/usr/share/X11/fonts/75dpi" FontPath "/usr/share/fonts/X11/misc" # path to defoma fonts FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load "i2c" Load "bitmap" Load "ddc" Load "dri" Load "extmod" Load "freetype" Load "glx" Load "int10" Load "type1" Load "vbe" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" Option "XkbOptions" "lv3:ralt_switch" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "stylus" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "eraser" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "cursor" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "Device" Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device" Driver "i810" BusID "PCI:0:2:0" EndSection Section "Monitor" Identifier "32MAA-H6A" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device" Monitor "32MAA-H6A" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1366x768" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" EndSection Section "DRI" Mode 0666 EndSection
The file was blank, so the entire contents are what I copied and pasted from the readme on the site, with the pertinent parts edited:Code:corey@Ubuntu:~$ sudo gedit /etc/init.d/boot.local
Then CTRL+ALT+Backspace to restart X aaaaaand....Code:#! /bin/sh # # Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany. All rights reserved. # # Author: Werner Fink , 1996 # Burchard Steinbild, 1996 # # /etc/init.d/boot.local # # script with local commands to be executed from init on system startup # # Here you should add things, that should happen directly after booting # before we're going to the first run level. # /usr/bin/915resolution 38 1366 768 24
Input out of range.
I've edited the xorg file, 915resolution and the boot script to reflect every single listed resolution one at a time that my HDTV's manual says it supports:
1366x768
1280x768
1280x1024
I even tried 1368x768, since that's what my old Windows XP partition identified it as!
After every edit, I'd hit CTRL+ALT+Backspace, and it would be out of range. So I'd hit CTRL+ALT+F1 to go into the console, edit all three parts with nano, then hit CTRL+ALT+F7 to return to X, then CTRL+ALT+Backspace to reboot X once more. Every time it's set to higher than 1024x768, my monitor says it can't read the input.
The manual says that all resolutions are 24 bits, 60Hz.
Would someone please tell me what else might be going wrong? The monitor has run at 1368x768 with Windows XP, so I know that it is capable. What's the matter?



Adv Reply




Bookmarks