DDC Detection ausschalten

H

HyperY2K

Grünschnabel
Ich bastel jetzt schon ne Weile an folgender Konfiguration:
-Ubuntu OS mit ATI-Grafikkarte Radeon9000

Ich möchte, dass zwei "Desktops" laufen (1 per VGA und 1 per TV Out)
und das Ganze mit versch. Auflösungen.
Mit angehängter xorg.conf klappt das auch, solange der VGA-Monitor verbunden ist. Ziehe ich ihn ab und starte das OS wird nur ein "Desktop" geladen, d.h. 1 Desktop wird über TV ausgegeben.
Hat jemand eine Idee, wie das Ganze auch ohne angeschlossen Monitor funktioniert?
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/CID"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
        # paths to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
	Load	"GLcore"
	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"	"de"
	Option		"XkbVariant"	"nodeadkeys"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	Option		"ZAxisMapping"		"4 5"
EndSection

Section "Device"
	Identifier	"ATI_TV"
	#Driver		"ati"
	Driver		"fglrx"
	BusID		"PCI:1:0:0"
	Screen		0
	Option		"UseInternalAGPGART" 	"yes"
	Option		"AGPMode"		"4"
	Option		"backingstore"		"true"
	Option		"NoTV"			"no"
    	Option 		"TVStandard"  		"PAL-D"
	Option 		"TVHSizeAdj"		"0"
    	Option 		"TVVSizeAdj"		"0"
    	Option 		"TVHPosAdj"		"0"
    	Option 		"TVVPosAdj"		"0"
    	Option 		"TVHStartAdj"		"0"
    	Option 		"TVColorAdj"		"0"
    	Option 		"GammaCorrectionI"	"0x00000000"
    	Option 		"GammaCorrectionII"	"0x00000000"
	Option		"FSAADisableGamma"	"no"
	Option		"PseudoColorVisuals"	"off"
EndSection

Section "Device"
	Identifier	"ATI_Monitor"
	Driver		"fglrx"
	BusID		"PCI:1:0:0"
	Screen		1
	Option		"UseFBDev"		"true"
	Option		"hwcursor"		"off"
	Option		"NoDDC"			"true"
	Option		"DDCMode"		"off"
	Option		"DDC"			"off"
    	Option 		"mtrr"			"off"
    	#Option 		"DesktopSetup"		"0x00000000"
    	Option 		"MonitorLayout"		"AUTO, AUTO"
    	Option 		"IgnoreEDID"		"off"
    	Option 		"HSync2"		"unspecified"
    	Option 		"VRefresh2"		"unspecified"
    	Option 		"ScreenOverlap"		"0"
EndSection

Section "Monitor"
	Identifier	"Standardbildschirm"
	Option		"DPMS"
	HorizSync	28-51
	VertRefresh	43-60
EndSection

Section "Monitor"
	Identifier	"TV"
	Option		"DPMS"
	HorizSync	28-51
	VertRefresh	43-60
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI_Monitor"
	Monitor		"Standardbildschirm"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
	EndSubSection
	SubSection "Display"
		Depth		4
		#Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"800x600" "720x400" "640x480" "1x1"
	EndSubSection
	SubSection "Display"
		Depth		8
		#Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"800x600" "720x400" "640x480" "1x1"
	EndSubSection
	SubSection "Display"
		Depth		15
		#Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"800x600" "720x400" "640x480" "1x1"
	EndSubSection
	SubSection "Display"
		Depth		16
		#Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"800x600" "720x400" "640x480" "1x1"
	EndSubSection
	SubSection "Display"
		Depth		24
		#Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
		Modes		"1024x768" "800x600" "720x400" "640x480" "1x1"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"Screen_TV"
	Device		"ATI_TV"
	Monitor		"TV"
	DefaultDepth	24
	SubSection	"Display"
		Depth	24
		Modes	"800x600"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen 0	"Default Screen" 0 0
	Screen 1	"Screen_TV" Rightof "Default Screen"
	#Screen 0	"Default Screen" 0 0
	#Screen 0	"Screen_TV" 
	#Screen 1	"Default Screen" Rightof "Screen_TV"
	#Option		"Xinerama"	"On"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection
 

Ähnliche Themen

X11 Monitor Position

X startet nichtmehr

tint2 und pekwm

xrandr X11 Problem

Zweiter Monitor geht bei Vollbildspielen aus.

Zurück
Oben