Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

03.08.2006, 09:03

could not open default font 'fixed'

Hallo
Ich bin gestern mit meinem 2'ten Gentoo-System auch auf xorg-x11 7 umgestiegen. Bei meinem ersten System gab es keine Probleme (Damals war die Sache noch Hardmasked.) Jetzt , wo die Geschichte als stabil gekennzeichnet ist, klappt es nicht.
Nach diversen Fehlermeldungen habe ich die xorg.conf mit minimalen Anforderungen neu erstellt nd mit vga und vesa getestet.

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
Xorg.0.log
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons"
(**) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse0: Buttons: 11
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) Mouse0: ps2EnableDataReporting: succeeded

Fatal server error:
could not open default font 'fixed'

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
xorg.conf
Section "ServerLayout"
	Identifier     "Layout0"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
#/usr/share/X11/xkb
	ModulePath      "/usr/lib64/xorg/modules"
        FontPath 	"/usr/share/fonts/TTF"
        FontPath 	"/usr/share/fonts/Type1"
        FontPath 	"/usr/share/fonts/75dpi"
        FontPath 	"/usr/share/fonts/100dpi"
EndSection

Section "Module"
	Load  "freetype"
	Load  "dbe"
	Load  "type1"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "ImPS/2"
	Option	    "Emulate3Buttons"
	Option	    "Device" "/dev/input/mice"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc101"
	Option	    "XkbLayout" "de"
EndSection

Section "Monitor"

 ### Comment all HorizSync and VertSync values to use DDC:
	Identifier   "Monitor0"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    31.5 - 79.0
	VertRefresh  50.0 - 70.0
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "nvidia"
	Card        "* Generic VESA compatible"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "800x600" "640x480"
	EndSubSection
EndSection

In der make.conf

Quellcode

1
2
INPUT_DEVICES="keyboard joystick mouse"
VIDEO_CARDS="nvidia vesa vga fbdev"