• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Kein X unter Debian Lenny auf Ultra 5

4077

Newbie
Moin zusammen,

ich habe hier eine feine SUN Ultra 5 stehen und wollte die endlich mal sauber zum Laufen bringen.
Die Grundinstallation hat schon prima geklappt, nur X macht Zicken.

das Log wirft folgendes raus:
Code:
	[12] -1	1	0x00c00008 - 0x00c0000b (0x4) IX[B]
	[13] -1	1	0x00c00000 - 0x00c00007 (0x8) IX[B]
	[14] 0	1	0x000003b0 - 0x000003bb (0xc) IS[B]
	[15] 0	1	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(==) MACH64(0): Depth 24, (--) framebuffer bpp 32
(==) MACH64(0): Using XAA acceleration architecture
(WW) MACH64: Mach64 in slot 1:2:0 could not be detected!
(II) UnloadModule: "mach64"
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

Und meine xorg.conf sieht so aus:
Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/etc/X11/rgb"
	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"
EndSection

Section "Module"
	Load  "xtrap"
	Load  "extmod"
	Load  "dbe"
	Load  "GLcore"
	Load  "dri"
	Load  "record"
	Load  "glx"
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"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "probe_sparse"       	# [<bool>]
        #Option     "accel"              	# [<bool>]
        #Option     "crt_display"        	# [<bool>]
        #Option     "composite_sync"     	# [<bool>]
        #Option     "hw_cursor"          	# [<bool>]
        #Option     "force_pci_mode"     	# [<bool>]
        #Option     "dma_mode"           	# <str>
        #Option     "agp_mode"           	# <i>
        #Option     "agp_size"           	# <i>
        #Option     "local_textures"     	# [<bool>]
        #Option     "buffer_size"        	# <i>
        #Option     "mmio_cache"         	# [<bool>]
        #Option     "test_mmio_cache"    	# [<bool>]
        #Option     "panel_display"      	# [<bool>]
        #Option     "reference_clock"    	# <freq>
        #Option     "shadow_fb"          	# [<bool>]
        #Option     "sw_cursor"          	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "RenderAccel"        	# [<bool>]
	Identifier  "Card0"
	Driver      "mach64"
	VendorName  "ATI Technologies Inc"
	BoardName   "3D Rage Pro 215GP"
	BusID       "PCI:1:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
                Modes "1280x1024" "1024x768" "800x600"
	EndSubSection
EndSection

Wer kann mir auf die Sprünge helfen?

Danke vorab
4077
 
Bist Du dir sicher das dort eine Mach64 Grafikkarte verbaut ist? Tausche mal bei "Driver "mach64"" das "mach64" gegen "vesa" aus. Danach solltest Du eigentlich den xserver starten können.
 
OP
4

4077

Newbie
Geier0815 schrieb:
Tausche mal bei "Driver "mach64"" das "mach64" gegen "vesa" aus.
habe ich gemacht und noch mehr. :D
Gerade geht gar nichts mehr.
=> http://debianforum.de/forum/viewtopic.php?p=717113#p717113
Ich werde das bei Gelegenheit wieder aufnehmen und Resultate auch hier notieren.

Danke
4077
 
Eventuell muss noch die Referenz-Zeit in die xorg.conf fuer die Video Karte eingetragen werden, da AFAIK bei nicht x86 dieses nicht automatisch passiert.
Code:
Option   "reference_clock"   "xx.xxx MHz"
 
Oben