Sie sind nicht angemeldet.

[gelöst] Xorg dual Monitor

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

12.02.2012, 21:38

Xorg dual Monitor

Hallo beisammen,
da ich inzwischen mein X-server zum laufen gekrigt habe, wollte ich mich meinem Externen Monitor widmen allerdings kriege ich ihn einfach nicht zum laufen. Auch ohne xorg.conf läuft nur der eine monitor.
Ich vermute dass es an den Treibern liegt da ich jedesmal wenn ich in die xorg.conf in Section Device die Treiber auf Intel/i915 stelle die Fehlermeldung “no screens found
” kriege. Deswegen habe ich dort vesa(X –configure bringt nichts lauffähiges aber die idee hatte ich von dort) eingetragen damit läuft zwar mein Laptop(Dell Latitude D620) Monitor aber nicht der zusätzlich angeschlossene.
Hat jemand eine idee woran das mit den intel treibern liegen kann bzw. Wie ich den monitor zum laufen krigen könnte? Bei meinen bisherigen Systemen hatt sich die xorg.conf immer selbst konfiguriert daher habe ich damit nicht allzuviel erfahrung.
Danke schonmal im vorraus für eure ideen.
while0


lspci

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03) 
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03) 
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03) 
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01) 
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01) 
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 01) 
00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 01) 
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01) 
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01) 
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01) 
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01) 
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01) 
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e1) 
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 01) 
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 01) 
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01) 
03:01.0 CardBus bridge: O2 Micro, Inc. OZ601/6912/711E0 CardBus/SmartCardBus Controller (rev 40) 
09:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5752 Gigabit Ethernet PCI Express (rev 02) 
0c:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)


xorg.conf

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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/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  "dbe" 
	Load  "record" 
	Load  "dri" 
	Load  "dri2" 
	Load  "extmod" 
	Load  "glx" 
EndSection 

Section "InputDevice" 
	Identifier  "Keyboard0" 
	Driver      "kbd" 
        Option      "XkbLayout" "de" 
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" 
	Option         "Primary"    "True" 
EndSection 

Section "Monitor" 
	Identifier     "Monitor1" 
	Option         "RightOf" "Monitor0" 
	Option         "Primary"    "False" 
EndSection 

Section "Device" 
	Identifier  "Card0" 
#	Driver      "i915" 
#	Driver	    "intel" 
	Driver      "vesa" 
	BusID       "PCI:0:2:0" 
EndSection 

Section "Device" 
	Identifier  "Card1" 
#	Driver      "i915" 
#	Driver	    "intel" 
	Driver      "vesa" 
	BusID       "PCI:0:2:1" 
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 
Section "Screen" 
	Identifier "Screen1" 
	Device     "Card1" 
	Monitor    "Monitor1" 
	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


Xorg.log mit intel

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[  1762.700] 
X.Org X Server 1.11.2
Release Date: 2011-11-04
[  1762.700] X Protocol Version 11, Revision 0
[  1762.700] Build Operating System: Linux 3.1.5-gentoo i686 Gentoo
[  1762.700] Current Operating System: Linux Tataros 3.1.10-gentoo-r1 #1 SMP Sun Feb 12 17:25:42 CET 2012 i686
[  1762.700] Kernel command line: real_root=/dev/sda3
[  1762.701] Build Date: 09 February 2012  09:30:37PM
[  1762.701]  
[  1762.701] Current version of pixman: 0.24.0
[  1762.701] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1762.701] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1762.702] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 12 22:26:38 2012
[  1762.702] (==) Using config file: "/etc/X11/xorg.conf"
[  1762.702] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1762.702] (==) ServerLayout "X.org Configured"
[  1762.702] (**) |-->Screen "Screen0" (0)
[  1762.702] (**) |   |-->Monitor "Monitor0"
[  1762.703] (**) |   |-->Device "Card0"
[  1762.703] (**) |-->Input Device "Mouse0"
[  1762.703] (**) |-->Input Device "Keyboard0"
[  1762.703] (==) Automatically adding devices
[  1762.703] (==) Automatically enabling devices
[  1762.703] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1762.703] 	Entry deleted from font path.
[  1762.703] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1762.703] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1762.703] 	Entry deleted from font path.
[  1762.703] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1762.703] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1762.703] 	Entry deleted from font path.
[  1762.703] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1762.703] 	Entry deleted from font path.
[  1762.703] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1762.703] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1762.703] 	Entry deleted from font path.
[  1762.703] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1762.703] (**) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/misc/
[  1762.703] (**) ModulePath set to "/usr/lib/xorg/modules"
[  1762.703] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  1762.703] (WW) Disabling Mouse0
[  1762.703] (WW) Disabling Keyboard0
[  1762.703] (II) Loader magic: 0x81f0580
[  1762.703] (II) Module ABI versions:
[  1762.703] 	X.Org ANSI C Emulation: 0.4
[  1762.703] 	X.Org Video Driver: 11.0
[  1762.703] 	X.Org XInput driver : 13.0
[  1762.703] 	X.Org Server Extension : 6.0
[  1762.704] (--) PCI:*(0:0:2:0) 8086:27a2:1028:01c2 rev 3, Mem @ 0xdff00000/524288, 0xc0000000/268435456, 0xdfec0000/262144, I/O @ 0x0000eff8/8
[  1762.704] (--) PCI: (0:0:2:1) 8086:27a6:1028:01c2 rev 3, Mem @ 0xdff80000/524288
[  1762.704] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[  1762.704] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[  1762.704] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  1762.704] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[  1762.704] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[  1762.705] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[  1762.705] (II) LoadModule: "dbe"
[  1762.705] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  1762.705] (II) Module dbe: vendor="X.Org Foundation"
[  1762.705] 	compiled for 1.11.2, module version = 1.0.0
[  1762.705] 	Module class: X.Org Server Extension
[  1762.705] 	ABI class: X.Org Server Extension, version 6.0
[  1762.705] (II) Loading extension DOUBLE-BUFFER
[  1762.705] (II) LoadModule: "record"
[  1762.705] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  1762.705] (II) Module record: vendor="X.Org Foundation"
[  1762.705] 	compiled for 1.11.2, module version = 1.13.0
[  1762.705] 	Module class: X.Org Server Extension
[  1762.705] 	ABI class: X.Org Server Extension, version 6.0
[  1762.705] (II) Loading extension RECORD
[  1762.705] (II) LoadModule: "dri"
[  1762.705] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  1762.706] (II) Module dri: vendor="X.Org Foundation"
[  1762.706] 	compiled for 1.11.2, module version = 1.0.0
[  1762.706] 	ABI class: X.Org Server Extension, version 6.0
[  1762.706] (II) Loading extension XFree86-DRI
[  1762.706] (II) LoadModule: "dri2"
[  1762.706] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  1762.706] (II) Module dri2: vendor="X.Org Foundation"
[  1762.706] 	compiled for 1.11.2, module version = 1.2.0
[  1762.706] 	ABI class: X.Org Server Extension, version 6.0
[  1762.706] (II) Loading extension DRI2
[  1762.706] (II) LoadModule: "extmod"
[  1762.706] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  1762.706] (II) Module extmod: vendor="X.Org Foundation"
[  1762.706] 	compiled for 1.11.2, module version = 1.0.0
[  1762.706] 	Module class: X.Org Server Extension
[  1762.706] 	ABI class: X.Org Server Extension, version 6.0
[  1762.706] (II) Loading extension MIT-SCREEN-SAVER
[  1762.706] (II) Loading extension XFree86-VidModeExtension
[  1762.706] (II) Loading extension XFree86-DGA
[  1762.706] (II) Loading extension DPMS
[  1762.706] (II) Loading extension XVideo
[  1762.706] (II) Loading extension XVideo-MotionCompensation
[  1762.706] (II) Loading extension X-Resource
[  1762.706] (II) LoadModule: "glx"
[  1762.706] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1762.707] (II) Module glx: vendor="X.Org Foundation"
[  1762.707] 	compiled for 1.11.2, module version = 1.0.0
[  1762.707] 	ABI class: X.Org Server Extension, version 6.0
[  1762.707] (==) AIGLX enabled
[  1762.707] (II) Loading extension GLX
[  1762.707] (II) LoadModule: "intel"
[  1762.707] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  1762.707] (II) Module intel: vendor="X.Org Foundation"
[  1762.707] 	compiled for 1.11.2, module version = 2.17.0
[  1762.707] 	Module class: X.Org Video Driver
[  1762.707] 	ABI class: X.Org Video Driver, version 11.0
[  1762.707] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server
[  1762.707] (--) using VT number 7

[  1762.714] (EE) No devices detected.
[  1762.714] 
Fatal server error:
[  1762.714] no screens found
[  1762.714] 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[  1762.714] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  1762.714] 


lsmod

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
Module                  Size  Used by 
i915                  421673  0 
drm_kms_helper         17912  1 i915 
drm                   123848  2 i915,drm_kms_helper 
i2c_algo_bit            3632  1 i915 
ipv6                  191396  10 
pl2303                  8591  0 
usbserial              21687  1 pl2303 
yenta_socket           16263  0 
snd_hda_codec_idt      38331  1 
arc4                     974  2 
iwl3945                54121  0 
iwl_legacy             37157  1 iwl3945 
mac80211              136993  2 iwl3945,iwl_legacy 
snd_hda_intel          15865  0 
snd_hda_codec          44518  2 snd_hda_codec_idt,snd_hda_intel 
cfg80211              116345  3 iwl3945,iwl_legacy,mac80211 
intel_agp               7972  1 i915 
intel_gtt               9257  3 i915,intel_agp 
snd_pcm                43754  2 snd_hda_intel,snd_hda_codec 
snd_timer              12175  1 snd_pcm 
snd                    34274  5 snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_pcm,snd_timer 
tpm_tis                 6270  0 
pcmcia_rsrc             7017  1 yenta_socket 
i2c_i801                6154  0 
agpgart                18226  3 drm,intel_agp,intel_gtt 
video                   9451  1 i915 
iTCO_wdt                9117  0 
ppdev                   4058  0 
tpm                     8191  1 tpm_tis 
rfkill                 10302  1 cfg80211 
parport_pc             23814  0 
dcdbas                  3720  0 
snd_page_alloc          4861  2 snd_hda_intel,snd_pcm 
i2c_core               12899  5 i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801 
iTCO_vendor_support     1332  1 iTCO_wdt 
backlight               2820  1 video 
joydev                  6535  0 
thermal                 6222  0 
battery                 8467  0 
tpm_bios                3412  1 tpm 
pcspkr                  1223  0 
processor              20897  2 
ac                      2353  0 
thermal_sys             9874  3 video,thermal,processor 
button                  3355  1 i915 
tg3                   104575  0 
libphy                 11919  1 tg3 
e1000                  76271  0 
fuse                   48175  1 
xfs                   515899  0 
exportfs                2426  1 xfs 
nfs                   209953  0 
nfs_acl                 1615  1 nfs 
auth_rpcgss            26621  1 nfs 
lockd                  51904  1 nfs 
sunrpc                136054  4 nfs,nfs_acl,auth_rpcgss,lockd 
jfs                   132751  0 
ext4                  274603  0 
jbd2                   47344  1 ext4 
raid10                 21410  0 
dm_snapshot            22477  0 
dm_crypt               11347  0 
dm_mirror               9923  0 
dm_region_hash          5148  1 dm_mirror 
dm_log                  6413  2 dm_mirror,dm_region_hash 
dm_mod                 48473  4 dm_snapshot,dm_crypt,dm_mirror,dm_log 
scsi_wait_scan           463  0 
hid_sunplus              981  0 
hid_sony                1932  0 
hid_samsung             2222  0 
hid_pl                   869  0 
hid_petalynx            1418  0 
hid_monterey            1073  0 
hid_microsoft           2075  0 
hid_logitech            5183  0 
hid_gyration            1540  0 
hid_ezkey                922  0 
hid_cypress             1270  0 
hid_chicony             1201  0 
hid_cherry              1029  0 
hid_belkin              1130  0 
hid_apple               3785  0 
hid_a4tech              1364  0 
sl811_hcd               7279  0 
usbhid                 25038  0 
ohci_hcd               16892  0 
ssb                    31783  1 ohci_hcd 
uhci_hcd               16012  0 
usb_storage            30876  0 
ehci_hcd               29121  0 
usbcore                92487  10 pl2303,usbserial,hid_sony,sl811_hcd,usbhid,ohci_hcd,uhci_hcd,usb_storage,ehci_hcd 
aic94xx                55728  0 
libsas                 40392  1 aic94xx 
lpfc                  405182  0 
qla2xxx               266561  0 
megaraid_sas           53190  0 
megaraid_mbox          21437  0 
megaraid_mm             5526  1 megaraid_mbox 
megaraid               31032  0 
aacraid                54912  0 
sx8                     9707  0 
DAC960                 54428  0 
cciss                  81674  0 
3w_9xxx                24572  0 
3w_xxxx                18582  0 
mptsas                 38748  0 
scsi_transport_sas     16669  3 aic94xx,libsas,mptsas 
mptfc                  10317  0 
scsi_transport_fc      29306  3 lpfc,qla2xxx,mptfc 
scsi_tgt                6824  1 scsi_transport_fc 
mptspi                 11523  0 
mptscsih               21153  3 mptsas,mptfc,mptspi 
mptbase                67729  4 mptsas,mptfc,mptspi,mptscsih 
atp870u                22209  0 
dc395x                 23771  0 
qla1280                16883  0 
imm                     7080  0 
parport                20723  3 ppdev,parport_pc,imm 
dmx3191d                7580  0 
sym53c8xx              56316  0 
qlogicfas408            3577  0 
gdth                   69938  0 
advansys               46174  0 
initio                 12911  0 
BusLogic               17348  0 
arcmsr                 20330  0 
aic7xxx                92185  0 
aic79xx                97085  0 
scsi_transport_spi     15279  5 mptspi,dmx3191d,sym53c8xx,aic7xxx,aic79xx 
sg                     19200  0 
pdc_adma                3982  0 
sata_inic162x           4974  0 
sata_mv                19566  0 
ata_piix               17606  3 
ahci                   16477  0 
libahci                13602  1 ahci 
sata_qstor              3901  0 
sata_vsc                2878  0 
sata_uli                2037  0 
sata_sis                2594  0 
sata_sx4                6697  0 
sata_nv                14371  0 
sata_via                5140  0 
sata_svw                2954  0 
sata_sil24              8360  0 
sata_sil                5416  0 
sata_promise            7217  0 
pata_pcmcia             6609  0 
pcmcia                 25045  2 ssb,pata_pcmcia 
pcmcia_core             8389  3 yenta_socket,pcmcia_rsrc,pcmcia


make.conf

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# These settings were set by the catalyst build script that automatically 
# built this stage. 
# Please consult /usr/share/portage/config/make.conf.example for a more 
# detailed example. 
CFLAGS="-O2 -march=i686 -pipe" 
CXXFLAGS="${CFLAGS}" 
# WARNING: Changing your CHOST is not something that should be done lightly. 
# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. 
CHOST="i686-pc-linux-gnu" 
MAKEOPTS="-j3" 

GENTOO_MIRRORS="ftp://de-mirror.org/gentoo/" 

SYNC="rsync://rsync9.de.gentoo.org/gentoo-portage" 
USE="gtk gnome dvd alsa cdr -kde static-libs midi enlightenment alsa branding dbus edsldap opengl vba python" 

INPUT_DEVICES="evdev keyboard mouse synaptics" 
VIDEO_CARDS="intel vesa fbdev"

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »while0« (13.02.2012, 18:44)


2

12.02.2012, 21:56

Ich vermute dass es an den Treibern liegt da ich jedesmal wenn ich in die xorg.conf in Section Device die Treiber auf Intel/i915 stelle die Fehlermeldung “no screens found


Ohne jetzt die Kernelkonfig zu kennen würde ich auf KMS tippen. Die Intel gehen nämlich nur mit CONFIG_DRM_I915_KMS=y. Alternativ kannst du auch in Grub ein i915.modeset=1 setzten. Überprüfe das mal und teste ob es damit geht.
Intel Core2 Quad CPU @ 2.40GHz mit Gentoo/Gnome3

3

13.02.2012, 18:44

uups ich dachte eigentlich ich hätte KMS in den Kernel gepackt... das wars DANKE