Ich habe auch so ein Problem. Bei mir erkennt er immer nur maximal 1024x786. Allerdings schafft mein Monitor noch viel mehr, allerdings nur mit 60Hz. Einen Kompromiss konnte ich eingehen, indem ich 1152x864 nutze.
Ubuntu (bzw. der X-Server) will anscheinend immer den Modus nutzen, wo die Bildwiederholungsfrequenz am höchsten ist.
Als würde ich dir mal raten deine Xorg.conf zu beseitigen und den X-Server zu rekonfigurieren.
|
Quellcode
|
1
2
|
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
sudo dpkg-reconfigure xserver-xorg -phigh
|
Den Fehler beim 2. Befehl kannst du ignorieren.
Falls etwas nach den folgenden Schritten nicht gehen sollte:
[Strg] + [Alt] + [F1] drücken. Dann Benutzername und Passwort eingeben.
(Du kannst auch beim Booten im Bootmenü dem "Recovery" Eintrag auswählen.)
Dann folgendes eingeben:
|
Quellcode
|
1
2
|
sudo rm /etc/X11/xorg.conf
sudo cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf
|
(Falls du im "Recovery" Modus bist musst du noch "reboot" eingeben.)
Den falls der X-Server nicht richtig konfiguriert ist, hast du keine Möglichkeit mehr dich grafisch anzumelden.
Die Xorg.conf sollte in etwa so aussehen:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# xorg.conf (X.Org 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 xorg.conf manual page.
# (Type "man 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 "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
EndSection
|
Jetzt probiere mal aus. Falls du die 1152x864 noch nicht nutzt:
Ubuntu verlässt sich auf die autokonfiguration des X-Servers. Deswegen fehlt im Menü ein Eintrag um das manuell einstellen zu können. Du kannst allerdings einfach
|
Quellcode
|
1
|
gksu displayconfig-gtk
|
ausführen.
Als erstes musst du deinen Monitor auswählen. Bei Modell habe ich "Monitor 1280x1024" weil meiner maximal so viel unterstützt. Bei Auflösung habe ich "1152x864" mit "75Hz" gewählt. Diese musst du für dich passend ändern. Anschließend auf OK.
Schaue dir mal jetzt deine Xorg.conf an. Die wichtigen Stellen sollten etwa so aussehen:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Section "Monitor"
Identifier "Configured Monitor"
Vendorname "Generic CRT Display"
Modelname "Monitor 1280x1024"
Horizsync 31.5-81.0
Vertrefresh 50-75
modeline "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
modeline "640x480@72" 31.5 640 664 704 832 480 489 491 520 -vsync -hsync
[...]
modeline "1600x1200@65" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
modeline "1600x1200@60" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
Gamma 1.0
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Defaultdepth 24
SubSection "Display"
Depth 24
Modes "1152x864@75"
EndSubSection
EndSection
|
Falls es bei dir noch viele andere "SubSection 'Display'" geben sollte, kannst du die einfach löschen, so das nur der mit "Depth" 24 und deiner gewollten Auflösung drin steht.
Wenn du nVidia-Treiber nutzen willst musst du noch bei "Section 'Device'" den Driver zu nvidia ändern.
|
Quellcode
|
1
2
3
4
5
6
|
Section "Device"
Identifier "Configured Video Device"
Busid "PCI:5:0:0"
Driver "nvidia"
Screen 0
EndSection
|