xorg.conf bzw. refreshrate bei neueren Ubuntu/Mint Versionen

Kein Plan

Lt. Commander
Registriert
Juni 2007
Beiträge
1.126
Hi,
ich habe folgendes Problem: ich habe eine das neue Mint heruntergeladen und benutze es auf einem mehr oder weniger aktuellen PC (am2). Der Monitor jedoch ist ein alter CRT (dieser wird wohl noch in diesem Jahr ersetzt aber bis dahin muss es noch gehen). Dieser CRT beherrscht max. 1280er Auflösung wird aber sehr unangenehm dabei (Flimmern). Viel lieber benutze ich 1024, wo auch 75-80 hz möglich sind. Mint hat zwar sonst alles selbst perfekt eingestellt nur der Monitor läuft zwar mit 1024x aber nur bei 60hz. Es flimmert und ist wirklich schrecklich anzusehen.

Früher hatte man ja die xorg.conf, diese scheint in den neuen Versionen von Ubuntu und Mint zu fehlen. Ich habe beim googlen nach dem Problem gelesen, dass man sie trotzdem noch erstellen kann und dann wird sie auch gelesen aber es geht irgendwie nicht.
Soweit ich verstehe sollten diese Zeilen genug sein:


Section "Monitor"
Identifier "Monitor0"
VendorName "Scott"
ModelName "Monitor Model"
HorizSync 28-70
VertRefresh 40-120
EndSection


Die Werte 28-70 und 40-120 sind das Ergebnis von "sudo ddcprobe | grep monitorrange"
Ich habe also dies in die Xorg.conf eingegeben, neugestartet und bäm: kein Desktop. Ich musste den Inhalt der xorg.conf erst löschen und gdm restarten damit ich wieder was "sehe".

Also: wie stelle ich bei Ubuntu/Mint die Refreshrate richtig ein? Ich komme hier nicht mehr weiter :(
 
Zuletzt bearbeitet: (Lesbarkeit)
Was benutzt denn für einen Grafiktreiber?
Mit
Code:
sudo Xorg -configure
kannst du dir (bei deaktivierem XServer)
eine initiale xorg.conf Datei erstellen lassen. Diese könntest du dann erstmal bearbeiten.

Wenn du proprietäre Treiber verwendest, würde ich die entsprechenden Tools von ATI/Nvidia benutzen. Vielleicht geht damit sowas?
 
Geht leider nicht. Es wird keine xorg.conf erstellt, stattdessen gibts da eine wall of text mit für mich unverständlichen Hinweisen. Anscheinend gabs einen Fehler oder so...

Was ich bisher mit google und etlichen Seiten zusammengeschustert habe:
Code:
Section "Monitor"
    Identifier    "SCM1769"
    HorizSync     30-69
    VertRefresh    50-120
    Modeline "1024x768_75.00"  81.80  1024 1080 1192 1360  768 769 772 802  -HSync +Vsync
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]"
        Monitor         "SCM1769"
        DefaultDepth    16
        SubSection "Display"
                Depth           16
                Modes           "1024x768_75.00"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768_75.00"
        EndSubSection
EndSection


# 1024x768 @ 75.00 Hz (GTF) hsync: 60.15 kHz; pclk: 81.80 MHz
Modeline "1024x768_75.00"  81.80  1024 1080 1192 1360  768 769 772 802  -HSync +Vsync
Wenn ich eine Xorg.conf erstelle, die genau das beinhaltet (und nicht mehr) bleibt der Bildschirm einfach schwarz bzw. es kommt nur die Konsole - kein Desktop. Grafikkarte ist eine Radeon x300. Was für ein Treiber weiß ich auch nicht genau. Das wird wohl der Standardtreiber bei Mint sein. Im Moment ist es (noch) nämlich eine USB-Stick Version des Betriebssystems (eine Art Live-USB nur, dass Änderungen, Dateien, Einstellungen, Programme etc gespeichert werden)
 
die x300 ist eine sehr alte Karte und AMD entfernt die alten aus ihren proprietären Treibern afaik. Ich muss es wohl mit radeon versuchen :/

Edit: Achja, das Fenster mit den eingeschränkten Treibern ist leer
Edit2:
habe das Problem nun endlich gelöst - mehr oder weniger.
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/X11/misc"
	FontPath     "/usr/share/fonts/X11/cyrillic"
	FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/X11/Type1"
	FontPath     "/usr/share/fonts/X11/100dpi"
	FontPath     "/usr/share/fonts/X11/75dpi"
	FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath     "built-ins"
EndSection

Section "Module"
	Load  "dbe"
	Load  "dri"
	Load  "dri2"
	Load  "extmod"
	Load  "glx"
	Load  "record"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
 	HorizSync     30-69
	VertRefresh    50-120
	Modeline "1024x768_75.00"  81.80  1024 1080 1192 1360  768 769 772 802  -HSync +Vsync
	#Modeline "1024x768_70" 78.26 1024 1056 1352 1384 768 783 792 807
	Modeline "1024x768_70.00"  76.16  1024 1080 1192 1360  768 769 772 800  -HSync +Vsync

EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "Dac6Bit"            	# [<bool>]
        #Option     "Dac8Bit"            	# [<bool>]
        #Option     "BusType"            	# [<str>]
        #Option     "CPPIOMode"          	# [<bool>]
        #Option     "CPusecTimeout"      	# <i>
        #Option     "AGPMode"            	# <i>
        #Option     "AGPFastWrite"       	# [<bool>]
        #Option     "AGPSize"            	# <i>
        #Option     "GARTSize"           	# <i>
        #Option     "RingSize"           	# <i>
        #Option     "BufferSize"         	# <i>
        #Option     "EnableDepthMoves"   	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "NoBackBuffer"       	# [<bool>]
        #Option     "DMAForXv"           	# [<bool>]
        #Option     "FBTexPercent"       	# <i>
        #Option     "DepthBits"          	# <i>
        #Option     "PCIAPERSize"        	# <i>
        #Option     "AccelDFS"           	# [<bool>]
        #Option     "IgnoreEDID"         	# [<bool>]
        #Option     "CustomEDID"         	# [<str>]
        #Option     "DisplayPriority"    	# [<str>]
        #Option     "PanelSize"          	# [<str>]
        #Option     "ForceMinDotClock"   	# <freq>
        #Option     "ColorTiling"        	# [<bool>]
        #Option     "VideoKey"           	# <i>
        #Option     "RageTheatreCrystal" 	# <i>
        #Option     "RageTheatreTunerPort" 	# <i>
        #Option     "RageTheatreCompositePort" 	# <i>
        #Option     "RageTheatreSVideoPort" 	# <i>
        #Option     "TunerType"          	# <i>
        #Option     "RageTheatreMicrocPath" 	# <str>
        #Option     "RageTheatreMicrocType" 	# <str>
        #Option     "ScalerWidth"        	# <i>
        #Option     "RenderAccel"        	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "ClockGating"        	# [<bool>]
        #Option     "VGAAccess"          	# [<bool>]
        #Option     "ReverseDDC"         	# [<bool>]
        #Option     "LVDSProbePLL"       	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "DRI"                	# [<bool>]
        #Option     "ConnectorTable"     	# <str>
        #Option     "DefaultConnectorTable" 	# [<bool>]
        #Option     "DefaultTMDSPLL"     	# [<bool>]
        #Option     "TVDACLoadDetect"    	# [<bool>]
        #Option     "ForceTVOut"         	# [<bool>]
        #Option     "TVStandard"         	# <str>
        #Option     "IgnoreLidStatus"    	# [<bool>]
        #Option     "DefaultTVDACAdj"    	# [<bool>]
        #Option     "Int10"              	# [<bool>]
        #Option     "EXAVSync"           	# [<bool>]
        #Option     "ATOMTVOut"          	# [<bool>]
        #Option     "R4xxATOM"           	# [<bool>]
        #Option     "ForceLowPowerMode"  	# [<bool>]
        #Option     "DynamicPM"          	# [<bool>]
        #Option     "NewPLL"             	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
	Identifier  "Card0"
	Driver      "radeon"
	BusID       "PCI:1:0:0"
EndSection


Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Depth           16
                Modes           "1024x768_75.00"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768_75.00"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768_70.00"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768_70.00"
        EndSubSection
EndSection
Die Datei wurde wohl durch sudo X -configure (vermute ich) erstellt und hat sich im User-ordner versteckt. Ich habe dann mit "gtf 1024 768 75" eine Modeline erstellt, bei "monitor" hinzugefügt und die modes unten bei "screen" eingetragen. Es funktioniert - hat gerade mal einandhalb Tage gedauert um ein kleines Problem zu lösen, das gar nicht existieren sollte; typisch Linux halt :D
Nur leider habe ich nun schmale schwarze ränder an allen Seiten aber das wird wohl so bleiben müssen :/
 
Zuletzt bearbeitet:
Zurück
Oben