I got it to work!
some much time I spend on this!
I had to mix and match stuff from different pages. Why is it so tricky??
DarthBrady's comment about cvt reminded me about a similar problem that I had before, and that gave me new ideas to try.
I used these 2 pages:
http://www.fluxbox-wiki.org/index.ph...nge_resolution
https://wiki.ubuntu.com/X/Config/Resolution
first I did
and got
Code:
# 1280x1024 59.89 Hz (CVT 1.31M4) hsync: 63.67 kHz; pclk: 109.00 MHz
Modeline "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
I copied everything after Modeline, and pasted after "xrandr --newmode" like this:
Code:
xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
now when I type
I see
Code:
Screen 0: minimum 320 x 200, current 800 x 600, maximum 4096 x 4096
VGA1 connected 800x600+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
800x600 60.3*
640x480 59.9
1280x1024_60.00 (0x126) 109.0MHz
h: width 1280 start 1368 end 1496 total 1712 skew 0 clock 63.7KHz
v: height 1024 start 1027 end 1034 total 1063 clock 59.9Hz
this tells me "VGA1" is the name of my monitor, and "1280x1024_60.00" is the name of the resolution I just added
from here I was stuck again, and did some trial and error, and figured out I should type this
Code:
xrandr --addmode VGA1 1280x1024_60.00
and then
Code:
xrandr -s 1280x1024
AND THEN FINALLY I got 1280x1024 working!
thank everyone for your help.
if anyone out there has the same problem, reply to this post and I'll try to help you. I know how much it sucks not being able to figure out how to fix this problem.