Τα γνωρίζω όλα αυτά. Το θέμα είναι ότι δεν μου αναγνωρίζει την ανάλυση του monitor για να τα εφαρμόσω.
Πρέπει να μου αναγνωρίσει ανάλυση 1400x1050 όχι 1360x768



the_eye έγραψε:Πρέπει να μου αναγνωρίσει ανάλυση 1400x1050 όχι 1360x768

xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
xaris2335 έγραψε:the_eye έγραψε:Πρέπει να μου αναγνωρίσει ανάλυση 1400x1050 όχι 1360x768
Δεν με προσέχεις καθόλου φαίνεται δες εδώ
λέει πως να προσθέσεις.
xrandr -s 1400x1050
Size 1400x1050 not found in available modes
Resetting an out-of-range resolution
If you set a resolution inappropriate for your monitor in the Screen Resolution GUI tool, you can reset it by running rm ~/.config/monitors.xml from a terminal.
Dynamically testing different resolutions
You can either use the Screen Resolution GUI tool to experiment with different resolutions, or the more powerful xrandr command-line tool:
$ xrandr
shows you the names of different outputs available on your system (LVDS, VGA-0, etc.) and resolutions available on each:
Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1400 x 1400
VGA disconnected (normal left inverted right x axis y axis)
LVDS connected 1400x1050+0+0 (normal left inverted right x axis y axis) 286mm x 214mm
1400x1050 60.0*+ 50.0
[...]
You can direct xrandr to set a different resolution like this:
$ xrandr --output LVDS --mode 1024X768
$ xrandr --output VGA1 --mode 1024X768
The refresh rate may also be changed, either at the same time or independently:
$ xrandr --output LVDS --mode 1024X768 --rate 75
$ xrandr --output VGA1 --mode 1024X768 --rate 60
Note that changes you make using xrandr only last through the current session. xrandr has a lot more capabilities - see man xrandr for details. 
xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
(Δεν μου βγάζει την ανάλυση 1400x1050 εδώ, αυτό είναι το πρόβλημά μου.)
1360x768 59.8
1024x768 60.0*
800x600 60.3 56.2
848x480 60.0
640x480 59.9 59.9xrandr --output VGA1 --mode 1400x1050
xrandr: cannot find mode 1400x1050 <----------------------------------- Εδώ είναι το πρόβλημα
Using 915resolution from within an Xserver
915resolution is going to be incorporated into the i810 driver from X.org. It should be in an upcoming release. This will void the need to run 915resolution manually. When I find out the appropriate X server has been released I'll put a notice on the website.
In the meantime, there is a test driver that has 915resolution built in here
The syntax to override a BIOS resolution is below. You place the option in the driver section.
Option "ForceBIOS" "1024x768=1400x1050"
This will re-program the old 1024x768 to become a new 1400x1050 one. 
