Sie sind nicht angemeldet.

[gelöst] xorg-server config

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

22.07.2016, 14:22

xorg-server config

Hallo Leute,

habe leider Probleme den xorg-server an den Start zu bringen und sehe nicht wirklich das Problem. Vielleicht kann mir ja jemand helfen?

xorg.log nach einem X -configure

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
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  8438.828] (WW) Falling back to old probe method for fglrx
[  8439.040] (WW) The directory "/usr/share/fonts/misc/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/100dpi/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/misc/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/100dpi/" does not exist.
[  8439.040] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
[  8439.040] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  8439.040] (WW) Disabling Mouse0
[  8439.041] (WW) Disabling Keyboard0
[  8439.041] (EE) 
[  8439.041] (EE) Backtrace:
[  8439.041] (EE) 0: X (xorg_backtrace+0x56) [0x58c856]
[  8439.041] (EE) 1: X (0x400000+0x190b09) [0x590b09]
[  8439.041] (EE) 2: /lib64/libc.so.6 (0x7fa8ce354000+0x33370) [0x7fa8ce387370]
[  8439.041] (EE) 
[  8439.041] (EE) Segmentation fault at address 0x0
[  8439.041] (EE) 
[  8439.041] (EE) Caught signal 11 (Segmentation fault). Server aborting
[  8439.041] (EE) 
[  8439.041] (EE) 
[  8439.041] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  8439.041] (EE)


hier die xorg.conf.new die mir angelegt wurde und für mein Verständnis nich so schlecht aussieht:

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
Section "ServerLayout"
	Identifier 	"X.org Configured"
	Screen  	0  "Screen0" 0 0
	InputDevice	"Mouse0" "CorePointer"
	InputDevice	"Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath 	"/usr/share/fonts/misc/"
	FontPath 	"/usr/share/fonts/TTF/"
	FontPath 	"/usr/share/fonts/OTF/"
	FontPath 	"/usr/share/fonts/Type1/"
	FontPath 	"/usr/share/fonts/100dpi/"
	FontPath 	"/usr/share/fonts/75dpi/"
EndSection

Section "Module"
	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",
    	### <percent>: "<f>%"
    	### [arg]: arg optional
    	#Option 	"Accel"          		# [<bool>]
    	#Option 	"SWcursor"       		# [<bool>]
    	#Option 	"EnablePageFlip" 		# [<bool>]
    	#Option 	"ColorTiling"    		# [<bool>]
    	#Option 	"ColorTiling2D"  		# [<bool>]
    	#Option 	"RenderAccel"    		# [<bool>]
    	#Option 	"SubPixelOrder"  		# [<str>]
    	#Option 	"AccelMethod"    		# <str>
    	#Option 	"EXAVSync"       		# [<bool>]
    	#Option 	"EXAPixmaps"     		# [<bool>]
    	#Option 	"ZaphodHeads"    		# <str>
    	#Option 	"EnablePageFlip" 		# [<bool>]
    	#Option 	"SwapbuffersWait"		# [<bool>]
	Identifier  "Card0"
	Driver  	"radeon"
	BusID   	"PCI:0:1:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device 	"Card0"
	Monitor	"Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth 	1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth 	4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth 	8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth 	15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth 	16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth 	24
	EndSubSection
EndSection


Nach einem startx bekomme ich das:

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
xauth:  file /root/.serverauth.5292 does not exist


X.Org X Server 1.17.4
Release Date: 2015-10-28
X Protocol Version 11, Revision 0
Build Operating System: Linux 4.4.6-gentoo x86_64 Gentoo
Current Operating System: Linux schlapp5 4.4.6-gentoo #1 SMP Fri Jul 22 10:44:40 CEST 2016 x86_64
Kernel command line: BOOT_IMAGE=/boot/kernel-genkernel-x86_64-4.4.6-gentoo root=UUID=5eb77dc0-ebcf-4bcf-941c-5911c7ba30a6 ro
Build Date: 22 July 2016  10:40:48AM
 
Current version of pixman: 0.32.8
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 22 14:19:32 2016
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(II) [KMS] drm report modesetting isn't supported.
(EE) 
Fatal server error:
(EE) no screens found(EE) 
(EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
(EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
(EE) 
(EE) Server terminated with error (1). Closing log file.
^Cxinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: unexpected signal 2


Hat jemand einen Tipp für mich wo hier genau das Problem liegt?


MfG Sven

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »moodsx4« (22.07.2016, 19:37)


2

22.07.2016, 14:29

wie sieht es mit der ~/.xinitrc aus?
Ist die angelegt?
Du könntest zum testen "echo xterm > ~/.xinitrc" und dann ein startx eingeben.
So einfach das jetzt auch klingt, war das bei mir vor 2 Wochen das Problem.
python -c "import this"

def is_nerd(): while coding:
if inside.has_fun: return True
else return False

3

22.07.2016, 14:35

Nein, war noch nicht angelegt, habe ich aber eben getan. Hier die Ausgabe nach einem "startx":

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
X.Org X Server 1.17.4
Release Date: 2015-10-28
X Protocol Version 11, Revision 0
Build Operating System: Linux 4.4.6-gentoo x86_64 Gentoo
Current Operating System: Linux schlapp5 4.4.6-gentoo #1 SMP Fri Jul 22 10:44:40 CEST 2016 x86_64
Kernel command line: BOOT_IMAGE=/boot/kernel-genkernel-x86_64-4.4.6-gentoo root=UUID=5eb77dc0-ebcf-4bcf-941c-5911c7ba30a6 ro
Build Date: 22 July 2016  10:40:48AM
 
Current version of pixman: 0.32.8
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 22 14:32:09 2016
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(II) [KMS] drm report modesetting isn't supported.
(EE) 
Fatal server error:
(EE) no screens found(EE) 
(EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
(EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
(EE) 
(EE) Server terminated with error (1). Closing log file.

xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error

4

22.07.2016, 15:43

Habe eben noch das hier gefunden:

Quellcode

1
2
3
4
5
6
[   25.362628] radeon 0000:00:01.0: Direct firmware load for radeon/kabini_pfp.bin failed with error -2
[   25.362660] radeon 0000:00:01.0: Direct firmware load for radeon/KABINI_pfp.bin failed with error -2
[   25.362664] cik_cp: Failed to load firmware "radeon/KABINI_pfp.bin"
[   25.362740] [drm:cik_init [radeon]] *ERROR* Failed to load firmware!
[   25.362744] radeon 0000:00:01.0: Fatal error during GPU init
[   25.362751] [drm] radeon: finishing device.


Wie bekomm ich die richtige firmware? Habe das Paket linux-firware installiert, scheint aber nicht zu helfen, auch war die benötigte Firmware nicht mit aufgelistet beim intall.

5

22.07.2016, 16:31

hast du nach der Anleitung installiert?
Du könntest auch hier noch mal nachschauen:
radeon -Gento Wiki
beseonders vieleicht diesen Teil:
firmware

Welche Graphikkarte hast du denn?
python -c "import this"

def is_nerd(): while coding:
if inside.has_fun: return True
else return False

6

22.07.2016, 19:37

Habs gelöst bekommen.

Habe das Packet linux-firmware runtergeworfen und das radeon-ucode emerged, damit kommt die benötigte Firmware und es funktioniert jetzt mit dem radeon Treiber.

Danke für die Hilfe und den Links zu den Wikis.