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

19.08.2009, 19:44

X-11 startet, XFCE startet nicht

Hallo Community

Ich probiere seit gestern eine anständige XFCE Oberfläche zum laufen zu bringen.

Folgendes habe ich gemacht:

emerge xorg-server mit folgenden USE Flags:

Quellcode

1
USE="ipv6 sdl xorg (-3dfx) -debug -dmx -hal -kdrive -minimal -nptl -tslib" INPUT_DEVICES="evdev keyboard mouse synaptics -acecad -aiptek -citron -elographics -fpit -hyperpen -joystick -mutouch -penmount -tslib -virtualbox -vmmouse -void -wacom" VIDEO_CARDS="intel radeon -apm -ark -ast -chips -cirrus -dummy -epson -fbdev (-geode) -glint -i128 (-i740) (-impact) (-imstt) -mach64 -mga -neomagic (-newport) -nv -nvidia -r128 -radeonhd -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb (-sunbw2) (-suncg14) (-suncg3) (-suncg6) (-sunffb) (-sunleo) (-suntcx) -tdfx -tga -trident -tseng -v4l (-vermilion) -vesa -via -virtualbox -vmware -voodoo (-xgi)" 0 kB


emerge xfce4 xfce4-settings mit folgenden USE Flags:

Quellcode

1
2
xfce-base/xfce4-settings-4.6.1  USE="keyboard -debug -libnotify -sound"
xfce-base/xfce4-4.6.1  USE="alsa cups -minimal -oss"


Meine 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# Section "ServerLayout"
#     Identifier    "X.org Configured"
#     Screen      0  "Screen0" 0 0
#     InputDevice    "Trackpoint" "CorePointer"
#     InputDevice    "Touchpad"
#     InputDevice    "Keyboard0" "CoreKeyboard"
# EndSection
#  
# Section "Files"
#  
#     #RgbPath      "/usr/share/X11/rgb"
#     #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  "dbe"
#     Load  "GLcore"
#     Load  "glx"
#     Load  "dri"
#     Load  "xtrap"
#     Load  "record"
#     Load  "extmod"
#     Load  "freetype"
#     Load  "type1"
#     Load  "synaptics"
# EndSection
#  
# Section "InputDevice"
#     Identifier  "Keyboard0"
#     Driver      "kbd"
#     Option        "XkbModel" "pc105"
#     Option        "XkbLayout" "de"
#     Option        "XkbVariant" "nodeadkeys"
# EndSection
#  
# Section "InputDevice"
#     Identifier  "Mouse0"
#     Driver      "mouse"
#     Option        "Protocol" "auto"
#     Option        "Device" "/dev/input/mice"
#     Option        "ZAxisMapping" "4 5 6 7"
#     Option        "Emulate3Buttons"
# EndSection
#  
# Section "InputDevice"
#     Identifier  "Touchpad"
#     Driver      "synaptics"
#     Option        "AlwaysCore"
#     Option        "Device" "/dev/input/mouse1"
#     Option        "Protocol" "auto-dev"
#     Option        "SendCoreEvents" "true"
#     Option        "LeftEdge" "1632"
#     Option        "RightEdge" "5312"
#     Option        "TopEdge" "1575"
#     Option        "BottomEdge" "4281"
#     Option        "FingerLow" "25"
#     Option        "FingerHigh" "30"
#     Option        "MaxTapTime" "180"
#     Option        "MaxTapMove" "220"
#     Option        "VertScrollDelta" "100"
#     Option        "MinSpeed" "0.06"
#     Option        "MaxSpeed" "0.12"
#     Option        "AccelFactor" "0.0010"
#     Option        "VertEdgeScroll" "on"
#     Option        "HorizEdgeScroll" "on"
#     # Option HorizScrollDelta""0"                             
#     Option        "SHMConfig" "on"
# EndSection
#  
# Section "InputDevice"
#  
#     #scrolling is emulate. If this is enabled, and device=xxx/mice, then
#     #scrolling in e.g. gimp by pressing mid btn and moving around is
#     #not possible!
#     Identifier  "Trackpoint"
#     Driver      "mouse"
#     Option        "CorePointer"
#     Option        "Device" "/dev/input/mice"
#     Option        "Protocol" "Auto"
#     Option        "Emulate3Buttons"
#     Option        "Emulate3Timeout" "50"
#     #When pressing mid trackpoint button and mouse goes up/down a wheel
#     Option        "EmulateWheel" "off"
#     Option        "EmulateWheelTimeout" "200"
#     Option        "EmulateWheelButton" "2"
#     Option        "XAxisMapping" "6 7"
#     Option        "YAxisMapping" "4 5"
# 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    "NoAccel"                # [<bool>]
#         #Option    "SWcursor"              # [<bool>]
#         #Option    "ColorKey"              # <i>
#         #Option    "CacheLines"            # <i>
#         #Option    "Dac6Bit"                # [<bool>]
#         #Option    "DRI"                    # [<bool>]
#         #Option    "NoDDC"                  # [<bool>]
#         #Option    "ShowCache"              # [<bool>]
#         #Option    "XvMCSurfaces"          # <i>
#         #Option    "PageFlip"              # [<bool>]
#     Identifier  "Card0"
#     Driver      "intel"
#     VendorName  "Intel Corporation"
#     BoardName  "Intel GMA X4500HD (IGP) max.384MB shared memory"
#     BusID      "PCI:0:2:0"
# EndSection
#  
# Section "Screen"
#     Identifier "Screen0"
#     Device    "Card0"
#     Monitor    "Monitor0"
#     DefaultDepth    16
#     SubSection "Display"
#         Viewport  0 0
#         Depth    16
#     EndSubSection
#     SubSection "Display"
#  
#         #DRI does not work above 2048x2048 for pre-965
#         #intel cards. Size is determined by xorg when
#         #X is launched such that monitor resolutions fit.
#         #Virtual 2048 2048
#         Viewport  0 0
#         Depth    24
#     EndSubSection
# EndSection


Hier meine make.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
# # These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /etc/make.conf.example for a more detailed example.
CFLAGS="-O2 -pipe -fomit-frame-pointer"
CXXFLAGS="${CFLAGS}"
CHOST="x86_64-pc-linux-gnu"
  
  
MAKEOPTS="-j3"
FEATURES="parallel-fetch"
  
GENTOO_MIRRORS="http://gentoo.mneisen.org/ http://mirror.bih.net.ba/gentoo/"
SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
 
USE="-esd -gnome -gstreamer -motif X a52 aac acpi alsa arts at4 bash-completion bittorrent
bzip2 c++ cdparanoia cdr dbus dhcp dirac divx dri dvd dvdr dvdread encode exif ffmpeg fuse
gimp gtk irc jpeg svg xfce -kde -kdeprefix lame laptop latex logrotate mikmod mmx mp2 mp3 mp4 mp4live mpeg
mpeg2 mplayer nomotif -nptl nsplugin ogg ogm opengl png pstricks samba scim sdl sid smp sse sse2
sse3 ssse3 unicode vcd vim-syntax wifi wma wmf wmp xcb xinerama xorg xulrunner"
  
VIDEO_CARDS="intel fglrx radeon"
# Note, if you use xorg with hal support, you only need evdev and synaptics
INPUT_DEVICES="keyboard mouse synaptics evdev"
LINGUAS="en" 


Mein xorg.conf Log:

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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# X.Org X Server 1.5.3
# Release Date: 5 November 2008
# X Protocol Version 11, Revision 0
# Build Operating System: Linux 2.6.30-gentoo-r4 x86_64
# Current Operating System: Linux cookie 2.6.30-gentoo-r4 #1 SMP PREEMPT Sun Aug 16 14:22:46 CEST 2009 x86_64
# Build Date: 17 August 2009  08:06:17PM
#  
#     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: Wed Aug 19 21:08:11 2009
# (==) Using config file: "/etc/X11/xorg.conf"
# (==) ServerLayout "X.org Configured"
# (**) |-->Screen "Screen0" (0)
# (**) |  |-->Monitor "Monitor0"
# (**) |  |-->Device "Card0"
# (**) |-->Input Device "Trackpoint"
# (**) |-->Input Device "Touchpad"
# (**) |-->Input Device "Keyboard0"
# (==) Not automatically adding devices
# (==) Not automatically enabling devices
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/misc/").
# (WW) The directory "/usr/share/fonts/TTF/" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/OTF" does not exist.
#     Entry deleted from font path.
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/misc/").
# (WW) The directory "/usr/share/fonts/TTF/" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/OTF" does not exist.
#     Entry deleted from font path.
# (**) FontPath set to:
#     /usr/share/fonts/Type1/,
#     /usr/share/fonts/100dpi/,
#     /usr/share/fonts/75dpi/,
#     /usr/share/fonts/Type1/,
#     /usr/share/fonts/100dpi/,
#     /usr/share/fonts/75dpi/,
#     built-ins
# (==) ModulePath set to "/usr/lib64/xorg/modules"
# (II) Open ACPI successful (/var/run/acpid.socket)
# (II) Loader magic: 0x3d00
# (II) Module ABI versions:
#     X.Org ANSI C Emulation: 0.4
#     X.Org Video Driver: 4.1
#     X.Org XInput driver : 2.1
#     X.Org Server Extension : 1.1
# (II) Loader running on linux
# (--) using VT number 7
#  
# (!!) More than one possible primary device found
# (--) PCI: (0@0:2:0) Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xfc000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
# (--) PCI: (0@1:0:0) ATI Technologies Inc Mobilitiy Radeon HD 3400 Series rev 0, Mem @ 0xc0000000/268435456, 0xbfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
# (II) System resource ranges:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
# (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
# (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
# (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
# (II) "record" will be loaded. This was enabled by default and also specified in the config file.
# (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
# (II) LoadModule: "dbe"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libdbe.so
# (II) Module dbe: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension DOUBLE-BUFFER
# (II) LoadModule: "glx"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libglx.so
# (II) Module glx: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org Server Extension, version 1.1
# (==) AIGLX enabled
# (==) Exporting typical set of GLX visuals
# (II) Loading extension GLX
# (II) LoadModule: "dri"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libdri.so
# (II) Module dri: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension XFree86-DRI
# (II) LoadModule: "xtrap"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libxtrap.so
# (II) Module xtrap: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension DEC-XTRAP
# (II) LoadModule: "record"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//librecord.so
# (II) Module record: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.13.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension RECORD
# (II) LoadModule: "extmod"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libextmod.so
# (II) Module extmod: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension SHAPE
# (II) Loading extension MIT-SUNDRY-NONSTANDARD
# (II) Loading extension BIG-REQUESTS
# (II) Loading extension SYNC
# (II) Loading extension MIT-SCREEN-SAVER
# (II) Loading extension XC-MISC
# (II) Loading extension XFree86-VidModeExtension
# (II) Loading extension XFree86-Misc
# (II) Loading extension XFree86-DGA
# (II) Loading extension DPMS
# (II) Loading extension TOG-CUP
# (II) Loading extension Extended-Visual-Information
# (II) Loading extension XVideo
# (II) Loading extension XVideo-MotionCompensation
# (II) Loading extension X-Resource
# (II) LoadModule: "freetype"
#  
# (WW) Warning, couldn't open module freetype
# (II) UnloadModule: "freetype"
# (EE) Failed to load module "freetype" (module does not exist, 0)
# (II) LoadModule: "type1"
#  
# (WW) Warning, couldn't open module type1
# (II) UnloadModule: "type1"
# (EE) Failed to load module "type1" (module does not exist, 0)
# (II) LoadModule: "synaptics"
#  
# (II) Loading /usr/lib64/xorg/modules/input//synaptics_drv.so
# (II) Module synaptics: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org XInput Driver
#     ABI class: X.Org XInput driver, version 2.1
# (II) LoadModule: "intel"
#  
# (II) Loading /usr/lib64/xorg/modules/drivers//intel_drv.so
# (II) Module intel: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 2.6.3
#     Module class: X.Org Video Driver
#     ABI class: X.Org Video Driver, version 4.1
# (II) LoadModule: "mouse"
#  
# (II) Loading /usr/lib64/xorg/modules/input//mouse_drv.so
# (II) Module mouse: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.4.0
#     Module class: X.Org XInput Driver
#     ABI class: X.Org XInput driver, version 2.1
# (II) LoadModule: "synaptics"
#  
# (II) Reloading /usr/lib64/xorg/modules/input//synaptics_drv.so
# (II) LoadModule: "kbd"
#  
# (II) Loading /usr/lib64/xorg/modules/input//kbd_drv.so
# (II) Module kbd: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.3.2
#     Module class: X.Org XInput Driver
#     ABI class: X.Org XInput driver, version 2.1
# (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
#     i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
#     E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
#     965GM, 965GME/GLE, G33, Q35, Q33,
#     Mobile Intel® GM45 Express Chipset,
#     Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
# (II) Primary Device is:
# (II) resource ranges after xf86ClaimFixedResources() call:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
# (II) resource ranges after probing:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[B]
#     [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[B]
#     [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[B]
#     [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
#     [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[B]
#     [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[B]
# (**) intel(0): Depth 16, (--) framebuffer bpp 16
# (==) intel(0): RGB weight 565
# (==) intel(0): Default visual is TrueColor
# (II) intel(0): Integrated Graphics Chipset: Intel(R) Mobile Intel® GM45 Express Chipset
# (--) intel(0): Chipset: "Mobile Intel® GM45 Express Chipset"
# (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
# (II) intel(0): Resizable framebuffer: available (0 4)
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 10, (OK)
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 10, (OK)
# drmOpenByBusid: Searching for BusID pci:0000:00:02.0
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 10, (OK)
# drmOpenByBusid: drmOpenMinor returns 10
# drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
# (II) [drm] DRM interface version 1.3
# (II) [drm] DRM open master succeeded.
# (II) intel(0): Output VGA1 using monitor section Monitor0
# (II) intel(0): Output LVDS1 has no monitor section
# (II) intel(0): Output VGA1 disconnected
# (II) intel(0): Output LVDS1 connected
# (II) intel(0): Using exact sizes for initial modes
# (II) intel(0): Output LVDS1 using initial mode 1440x900
# (==) intel(0): video overlay key set to 0x83e
# (==) intel(0): Will not try to enable page flipping
# (==) intel(0): Triple buffering disabled
# (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
# (==) intel(0): DPI set to (96, 96)
# (II) Loading sub module "fb"
# (II) LoadModule: "fb"
#  
# (II) Loading /usr/lib64/xorg/modules//libfb.so
# (II) Module fb: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org ANSI C Emulation, version 0.4
# (II) Loading sub module "ramdac"
# (II) LoadModule: "ramdac"
# (II) Module "ramdac" already built-in
# (II) do I need RAC?  No, I don't.
# (II) resource ranges after preInit:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[B]
#     [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[B]
#     [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[B]
#     [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
#     [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[B]
#     [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[B]
# (**) intel(0): Kernel mode setting active, disabling FBC.
# (**) intel(0): Framebuffer compression disabled
# (**) intel(0): Tiling enabled
# (==) intel(0): VideoRam: -1 KB
# (II) intel(0): Attempting memory allocation with tiled buffers.
# (II) intel(0): Tiled allocation successful.
# (II) intel(0): Page Flipping disabled
# (II) UXA(0): Driver registered support for the following operations:
# (II)        solid
# (II)        copy
# (II)        composite (RENDER acceleration)
# (==) intel(0): Backing store disabled
# (==) intel(0): Silken mouse enabled
# (II) intel(0): Initializing HW Cursor
# (II) intel(0): No memory allocations
# (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
# (II) intel(0): DPMS enabled
# (==) intel(0): Intel XvMC decoder disabled
# (II) intel(0): Set up textured video
# (II) intel(0): direct rendering: Failed
# (--) RandR disabled
# (II) Initializing built-in extension MIT-SHM
# (II) Initializing built-in extension XInputExtension
# (II) Initializing built-in extension XTEST
# (II) Initializing built-in extension XKEYBOARD
# (II) Initializing built-in extension XINERAMA
# (II) Initializing built-in extension XFIXES
# (II) Initializing built-in extension RENDER
# (II) Initializing built-in extension RANDR
# (II) Initializing built-in extension COMPOSITE
# (II) Initializing built-in extension DAMAGE
# (II) Initializing built-in extension XEVIE
# (II) AIGLX: Screen 0 is not DRI capable
# (II) AIGLX: Loaded and initialized /usr/lib64/dri/swrast_dri.so
# (II) GLX: Initialized DRISWRAST GL provider for screen 0
# (II) intel(0): Setting screen physical size to 304 x 190
# (**) Option "Protocol" "Auto"
# (**) Option "Device" "/dev/input/mice"
# (II) Trackpoint: Setting mouse protocol to "ExplorerPS/2"
# (**) Trackpoint: Device: "/dev/input/mice"
# (**) Trackpoint: Protocol: "Auto"
# (**) Option "CorePointer"
# (**) Trackpoint: always reports core events
# (**) Option "Device" "/dev/input/mice"
# (**) Option "Emulate3Buttons"
# (**) Option "Emulate3Timeout" "50"
# (**) Trackpoint: Emulate3Buttons, Emulate3Timeout: 50
# (**) Trackpoint: ZAxisMapping: buttons 4 and 5
# (**) Option "EmulateWheel" "off"
# (**) Trackpoint: Buttons: 9
# (**) Trackpoint: Sensitivity: 1
# (II) Synaptics touchpad driver version 1.0.0
# (--) Touchpad auto-dev sets device to /dev/input/event9
# (**) Option "Device" "/dev/input/event9"
# (II) Touchpad: x-axis range 1472 - 5472
# (II) Touchpad: y-axis range 1408 - 4448
# (II) Touchpad: pressure range 0 - 255
# (II) Touchpad: finger width range 0 - 0
# (II) Touchpad: buttons: left right middle
# (**) Option "SHMConfig" "on"
# (**) Option "LeftEdge" "1632"
# (**) Option "RightEdge" "5312"
# (**) Option "TopEdge" "1575"
# (**) Option "BottomEdge" "4281"
# (**) Option "FingerLow" "25"
# (**) Option "FingerHigh" "30"
# (**) Option "MaxTapTime" "180"
# (**) Option "MaxTapMove" "220"
# (**) Option "VertScrollDelta" "100"
# (**) Option "VertEdgeScroll" "on"
# (**) Option "HorizEdgeScroll" "on"
# (--) Touchpad touchpad found
# (**) Option "AlwaysCore"
# (**) Option "SendCoreEvents" "true"
# (**) Touchpad: always reports core events
# (**) Option "CoreKeyboard"
# (**) Keyboard0: always reports core events
# (**) Option "Protocol" "standard"
# (**) Keyboard0: Protocol: standard
# (**) Option "AutoRepeat" "500 30"
# (**) Option "XkbRules" "xorg"
# (**) Keyboard0: XkbRules: "xorg"
# (**) Option "XkbModel" "pc105"
# (**) Keyboard0: XkbModel: "pc105"
# (**) Option "XkbLayout" "de"
# (**) Keyboard0: XkbLayout: "de"
# (**) Option "XkbVariant" "nodeadkeys"
# (**) Keyboard0: XkbVariant: "nodeadkeys"
# (**) Option "CustomKeycodes" "off"
# (**) Keyboard0: CustomKeycodes disabled
# (II) evaluating device (Trackpoint)
# (II) XINPUT: Adding extended input device "Trackpoint" (type: MOUSE)
# (II) evaluating device (Touchpad)
# (II) XINPUT: Adding extended input device "Touchpad" (type: TOUCHPAD)
# (II) evaluating device (Keyboard0)
# (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
# (II) Trackpoint: Setting mouse protocol to "ExplorerPS/2"
# (II) Trackpoint: ps2EnableDataReporting: succeeded
# (--) Touchpad touchpad found
# (II) intel(0): EDID vendor "LEN", prod id 16435
# (II) intel(0): Printing DDC gathered Modelines:
# (II) intel(0): Modeline "1440x900"x0.0  102.00  1440 1488 1520 1832  900 903 909 926 -hsync -vsync (55.7 kHz)
# (II) intel(0): Modeline "1440x900"x0.0  85.80  1440 1488 1520 1856  900 903 909 926 -hsync -vsync (46.2 kHz)
# (II) intel(0): EDID vendor "LEN", prod id 16435
# (II) intel(0): Printing DDC gathered Modelines:
# (II) intel(0): Modeline "1440x900"x0.0  102.00  1440 1488 1520 1832  900 903 909 926 -hsync -vsync (55.7 kHz)
# (II) intel(0): Modeline "1440x900"x0.0  85.80  1440 1488 1520 1856  900 903 909 926 -hsync -vsync (46.2 kHz)
#  
# Backtrace:
# 0: X(xorg_backtrace+0x26) [0x4ddbc6]
# 1: X(xf86SigHandler+0x39) [0x473329]
# 2: /lib/libc.so.6 [0x7f1fbc89e270]
# 3: /usr/lib/libdrm_intel.so.1 [0x7f1fbb0e8fe2]
# 4: /usr/lib/libdrm_intel.so.1 [0x7f1fbb0e8ee7]
# 5: /usr/lib/libdrm_intel.so.1 [0x7f1fbb0e937c]
# 6: /usr/lib64/xorg/modules/drivers//intel_drv.so(intel_batch_flush+0xa2) [0x7f1fbb30c422]
# 7: /usr/lib64/xorg/modules/drivers//intel_drv.so [0x7f1fbb3324d9]
# 8: /usr/lib64/xorg/modules/drivers//intel_drv.so(uxa_copy_n_to_n+0x331) [0x7f1fbb348441]
# 9: /usr/lib64/xorg/modules/drivers//intel_drv.so(uxa_composite+0xd37) [0x7f1fbb34b5c7]
# 10: X [0x51e863]
# 11: X [0x50de08]
# 12: X(Dispatch+0x334) [0x4474e4]
# 13: X(main+0x415) [0x42f165]
# 14: /lib/libc.so.6(__libc_start_main+0xf4) [0x7f1fbc88b5e4]
# 15: X [0x42e569]
#  
# Fatal server error:
# Caught signal 11.  Server aborting
#  
# (II) UnloadModule: "mouse"
# (II) UnloadModule: "synaptics"
# (II) UnloadModule: "kbd"


Für Informationen zu meinem Rechner:
http://www.brack.ch/tabid/294/Default.aspx?ID=102962


Ich hoffe mir kann jemand weiterhelfen ... :S

Liebe Gruesse
cocox

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »cocox« (03.09.2009, 23:07)


2

19.08.2009, 20:16

Hi
Sehe ich das richtig das in deiner xorg.conf alles auskommentiert ist?
wenn ja, dann ist sie eigentlich überflüssig..

"hal" möchtest du nicht verwenden?

Wie schaut es mit "dbus" aus ist dieser gestartet?

Quellcode

1
# /etc/init.d/dbus status

eventuell

Quellcode

1
2
# /etc/init.d/dbus start
# rc-update add dbus default

3

19.08.2009, 20:24

Danke für die Antwort.

Das ist ein Copy Paste Fehler. Meine xorg ist natürlich nicht komplett auskommentiert.

hal und dbus sind gestartet.

freundliche Gruesse

4

19.08.2009, 20:35

Ah, ok..

Hm.., magst es es nicht sonst mal mit "hal" für deine Eingabegeräte probieren, oder möchtest du das generell nicht?
wenn ja, dann setze die USE="hal" mit in die make.conf und baue sie dann zb mit einem

Quellcode

1
emerge -avuDN world
ins System, achte drauf das xorg-server auch mit USE="hal" gebaut wird.

/edit
Ich sehe grad das du da in der xorg.conf

Quellcode

1
DefaultDepth    16
gesetzt hast, probiere es doch sonnst auch mal mit "24" , einige Treiber, zb der ATI Catalyst laufen ausschließlich mit "24" , wie das nun mit Intel ist weiß ich nicht.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »josef.95« (19.08.2009, 20:41)


5

19.08.2009, 21:12

Soo, ich habe deinen Rat befolgt und hal in die make.conf aufgenommen.

Danach folgendermassen installiert:
emerge -avuDN xorg-server

sowie:

emerge -avuDN xfce4 xfce-settings

danach mit X -configure meine xorg.conf neu konfiguriert.

Hat aber leider nichts gebracht

6

19.08.2009, 21:47

Hm, das ist ja mysteriös ?(
magst du noch mal die aktuelle /var/log/Xorg.0.log anhängen

Wie versuchst du xfce zu starten, via "$ startx" ?
gibt es dort eine Fehlermeldung?

Verwendest du eine ~/.xinitrc
oder ein login-Manager ?

Falls noch nicht erstellt, lege dir mal eine xinitrc an und versuche dann via startx dein xfce zu starten, die xinitrc sollte etwa so ausschauen

Quellcode

1
2
$ cat .xinitrc
exec startxfce4

7

19.08.2009, 22:03

Meine komplette Xorg.0.log:
index.php?page=Attachment&attachmentID=2514

startx funktioniert soweit - nur wen ich X wieder beenden will bekomme ich den selben Screen wie beim starten von XFCE(startxfce4). -> Schwarzer Bildschirm mit ganz oben links einem kleinen weissen Strich

Login Manager habe ich: slim (kann ich auch ohne fehler starten)
xinitrc habe ich temporär gelöscht. Hatte ich vorhin aber und funzzte auch nicht

/edit: von josef.95
xorg.0.log Ausgabe in Datei-Anhang geändert, ist so doch wesentlich übersichtlicher und besser lesbar..

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »josef.95« (19.08.2009, 23:02)


8

19.08.2009, 22:55

Magst du mal testen ob es mit dem "vesa" Grafik Treiber funktionieren würde?

Zitat

# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc/".
# Entry deleted from font path.
# (Run 'mkfontdir' on "/usr/share/fonts/misc/").
auch nicht schön..
bring das doch mal wie empfohlen mit einem

Quellcode

1
# mkfontdir /usr/share/fonts/misc/
in ordnung.

9

22.08.2009, 15:06

Ich habe Probleme mein nvidia kernelmodule zu laden:

modprobe nvidia
FATAL: Error inserting nvidia (/lib/modules/2.6.30-gentoo-r4/video/nvidia.lo) No such file

dmesg gibt mir:

nvidia: module license 'NVIDIA' taints kernel
Disabling lock debugging due to kernel taint
NVRM: No NVIDIA graphics adapter found!

MfG,

10

22.08.2009, 20:34

Wie kommst du den nun plötzlich auf nVidia? , wurde die Grafikkarte gewechselt?
deine bisherige Konfiguration war doch auf Intel Grafik ausgelegt...

Poste doch bitte mal die Ausgabe von

Quellcode

1
# lspci | grep -i vga
("lspci" ist im Paket "sys-apps/pciutils" enthalten)

11

22.08.2009, 21:15

Quellcode

1
2
VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
VGA compatible controller: ATI Technologies Inc Mobility Radeon HD 3400 Series

/edit: von josef.95
Ausgabe in code tags gesetzt

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »josef.95« (22.08.2009, 21:34)


12

22.08.2009, 21:48

Du hast also nach wie vor ein ATI und Intel Grafik Chipsatz, ein nVidia Treiber ist also unpassend.

Schau doch mal ob sich in

Quellcode

1
$ cat .xsession-errors
hinweise finden lassen, ansonsten poste die Datei einfach mal hier.

/edit
Noch was zu dem Beitrag mit dem kaputten `fonts.dir'
Wenn du das `fonts.dir' wieder in Ordnung gebracht hast, baue die darin enthaltenen Fonts am besten noch mal neu.
Eine Auflistung der darin enthaltenen Fonts kannst du zb mit

Quellcode

1
# eix -I -c misc
dir ausgeben lassen, baue diese Pakete zur Sicherheit noch mal neu, etwa via

Quellcode

1
# emerge --oneshot Paket Paket


PS: "eix" ist im Paket "app-portage/eix" enthalten, nach der Installation sollte zunächst ein "eix-update" durchgeführt werden.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »josef.95« (23.08.2009, 02:07)


13

23.08.2009, 14:04

Ich habe nochmal komplett neu angefangen ... hat aber leider nichts gebracht

Meine 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# Section "ServerLayout"
#     Identifier    "X.org Configured"
#     Screen      0  "Screen0" 0 0
#  
#     InputDevice    "Trackpoint" "CorePointer"
#     InputDevice    "Touchpad"
#     InputDevice    "Keyboard0" "CoreKeyboard"
# EndSection
#  
# Section "Files"
#     #RgbPath      "/usr/share/X11/rgb"
#     #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  "dbe"
#     Load  "GLcore"
#     Load  "glx"
#     Load  "dri"
#     Load  "xtrap"
#     Load  "record"
#     Load  "extmod"
#     Load  "freetype"
#     Load  "type1"
#     Load  "synaptics"
# EndSection
#  
# Section "InputDevice"
#         Identifier  "Keyboard0"
#         Driver      "kbd"
#         Option      "XkbModel"  "pc105"
#         Option      "XkbLayout"  "de"
#         Option      "XkbVariant" "nodeadkeys"
# EndSection
#  
# Section "InputDevice"
#         Identifier  "Mouse0"
#         Driver      "mouse"
#         Option        "Protocol" "auto"
#         Option        "Device" "/dev/input/mice"
#     Option        "ZAxisMapping" "4 5 6 7"
#     Option      "Emulate3Buttons"
# EndSection
#  
# Section "InputDevice"
#     Identifier  "Touchpad"
#     Driver    "synaptics"
#     Option    "AlwaysCore"
#     Option    "Device" "/dev/input/mouse1"
#     Option    "Protocol" "auto-dev"
#     Option    "SendCoreEvents"  "true"
#     Option    "LeftEdge"    "1632"
#     Option    "RightEdge"    "5312"
#     Option    "TopEdge"    "1575"
#     Option    "BottomEdge"    "4281"
#     Option    "FingerLow"    "25"
#     Option    "FingerHigh"    "30"
#     Option    "MaxTapTime"    "180"
#     Option    "MaxTapMove"    "220"
#     Option    "VertScrollDelta"  "100"
#     Option    "MinSpeed"    "0.06"
#     Option    "MaxSpeed"    "0.12"
#     Option    "AccelFactor"    "0.0010"
#     Option    "VertEdgeScroll"  "on"
#     Option    "HorizEdgeScroll"  "on"
#     # Option HorizScrollDelta""0"                             
#     Option    "SHMConfig"  "on"
# EndSection
#  
# Section "InputDevice"
#     Identifier  "Trackpoint"
#     Driver      "mouse"
#     Option "CorePointer"
#     Option "Device" "/dev/input/mice"
#     Option "Protocol" "Auto"
#     Option "Emulate3Buttons"
#     Option "Emulate3Timeout" "50"
#     #When pressing mid trackpoint button and mouse goes up/down a wheel
#     #scrolling is emulate. If this is enabled, and device=xxx/mice, then
#     #scrolling in e.g. gimp by pressing mid btn and moving around is
#     #not possible!
#     Option "EmulateWheel" "off"
#     Option "EmulateWheelTimeout" "200"
#     Option "EmulateWheelButton" "2"
#     Option "XAxisMapping" "6 7"
#     Option "YAxisMapping" "4 5"
# 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    "NoAccel"                # [<bool>]
#         #Option    "SWcursor"              # [<bool>]
#         #Option    "ColorKey"              # <i>
#         #Option    "CacheLines"            # <i>
#         #Option    "Dac6Bit"                # [<bool>]
#         #Option    "DRI"                    # [<bool>]
#         #Option    "NoDDC"                  # [<bool>]
#         #Option    "ShowCache"              # [<bool>]
#         #Option    "XvMCSurfaces"          # <i>
#         #Option    "PageFlip"              # [<bool>]
#     Identifier  "Card0"
#     Driver      "intel"
#     VendorName  "Intel Corporation"
#     BoardName  "Intel GMA X4500HD (IGP) max.384MB shared memory"
#     BusID      "PCI:0:2:0"
#  
# EndSection
#  
# Section "Screen"
#     Identifier "Screen0"
#     Device    "Card0"
#     Monitor    "Monitor0"
#  
#     DefaultDepth 16
#  
#     SubSection "Display"
#         Viewport  0 0
#         Depth    16
#     EndSubSection
#     SubSection "Display"
#         Viewport  0 0
#         Depth    24
#         #DRI does not work above 2048x2048 for pre-965
#         #intel cards. Size is determined by xorg when
#         #X is launched such that monitor resolutions fit.
#         #Virtual 2048 2048
#     EndSubSection
# EndSection 


UNd mein log dazu:

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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# X.Org X Server 1.5.3
# Release Date: 5 November 2008
# X Protocol Version 11, Revision 0
# Build Operating System: Linux 2.6.30-gentoo-r4 x86_64
# Current Operating System: Linux cookie 2.6.30-gentoo-r4 #1 SMP PREEMPT Sat Aug 22 16:15:08 GMT 2009 x86_64
# Build Date: 22 August 2009  10:23:37PM
#  
#     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: Sun Aug 23 13:49:08 2009
# (==) Using config file: "/etc/X11/xorg.conf"
# (==) ServerLayout "X.org Configured"
# (**) |-->Screen "Screen0" (0)
# (**) |  |-->Monitor "Monitor0"
# (**) |  |-->Device "Card0"
# (**) |-->Input Device "Trackpoint"
# (**) |-->Input Device "Touchpad"
# (**) |-->Input Device "Keyboard0"
# (==) Automatically adding devices
# (==) Automatically enabling devices
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/misc/").
# (WW) The directory "/usr/share/fonts/TTF/" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/OTF" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/Type1/" does not exist.
#     Entry deleted from font path.
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/misc/").
# (WW) The directory "/usr/share/fonts/TTF/" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/OTF" does not exist.
#     Entry deleted from font path.
# (WW) The directory "/usr/share/fonts/Type1/" does not exist.
#     Entry deleted from font path.
# (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
#     Entry deleted from font path.
#     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
# (**) FontPath set to:
#     /usr/share/fonts/75dpi/,
#     /usr/share/fonts/75dpi/,
#     built-ins
# (==) ModulePath set to "/usr/lib64/xorg/modules"
# (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled.
# (WW) Disabling Trackpoint
# (WW) Disabling Keyboard0
# (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
# (II) No APM support in BIOS or kernel
# (II) Loader magic: 0x3500
# (II) Module ABI versions:
#     X.Org ANSI C Emulation: 0.4
#     X.Org Video Driver: 4.1
#     X.Org XInput driver : 2.1
#     X.Org Server Extension : 1.1
# (II) Loader running on linux
# (--) using VT number 7
#  
# (!!) More than one possible primary device found
# (--) PCI: (0@0:2:0) Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xfc000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
# (--) PCI: (0@1:0:0) ATI Technologies Inc Mobilitiy Radeon HD 3400 Series rev 0, Mem @ 0xc0000000/268435456, 0xbfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
# (II) System resource ranges:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
# (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
# (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
# (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
# (II) "record" will be loaded. This was enabled by default and also specified in the config file.
# (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
# (II) LoadModule: "dbe"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libdbe.so
# (II) Module dbe: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension DOUBLE-BUFFER
# (II) LoadModule: "glx"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libglx.so
# (II) Module glx: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org Server Extension, version 1.1
# (==) AIGLX enabled
# (==) Exporting typical set of GLX visuals
# (II) Loading extension GLX
# (II) LoadModule: "dri"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libdri.so
# (II) Module dri: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension XFree86-DRI
# (II) LoadModule: "xtrap"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libxtrap.so
# (II) Module xtrap: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension DEC-XTRAP
# (II) LoadModule: "record"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//librecord.so
# (II) Module record: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.13.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension RECORD
# (II) LoadModule: "extmod"
#  
# (II) Loading /usr/lib64/xorg/modules/extensions//libextmod.so
# (II) Module extmod: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org Server Extension
#     ABI class: X.Org Server Extension, version 1.1
# (II) Loading extension SHAPE
# (II) Loading extension MIT-SUNDRY-NONSTANDARD
# (II) Loading extension BIG-REQUESTS
# (II) Loading extension SYNC
# (II) Loading extension MIT-SCREEN-SAVER
# (II) Loading extension XC-MISC
# (II) Loading extension XFree86-VidModeExtension
# (II) Loading extension XFree86-Misc
# (II) Loading extension XFree86-DGA
# (II) Loading extension DPMS
# (II) Loading extension TOG-CUP
# (II) Loading extension Extended-Visual-Information
# (II) Loading extension XVideo
# (II) Loading extension XVideo-MotionCompensation
# (II) Loading extension X-Resource
# (II) LoadModule: "freetype"
#  
# (WW) Warning, couldn't open module freetype
# (II) UnloadModule: "freetype"
# (EE) Failed to load module "freetype" (module does not exist, 0)
# (II) LoadModule: "type1"
#  
# (WW) Warning, couldn't open module type1
# (II) UnloadModule: "type1"
# (EE) Failed to load module "type1" (module does not exist, 0)
# (II) LoadModule: "synaptics"
#  
# (II) Loading /usr/lib64/xorg/modules/input//synaptics_drv.so
# (II) Module synaptics: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     Module class: X.Org XInput Driver
#     ABI class: X.Org XInput driver, version 2.1
# (II) LoadModule: "intel"
#  
# (II) Loading /usr/lib64/xorg/modules/drivers//intel_drv.so
# (II) Module intel: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 2.6.3
#     Module class: X.Org Video Driver
#     ABI class: X.Org Video Driver, version 4.1
# (II) LoadModule: "synaptics"
#  
# (II) Reloading /usr/lib64/xorg/modules/input//synaptics_drv.so
# (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
#     i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
#     E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
#     965GM, 965GME/GLE, G33, Q35, Q33,
#     Mobile Intel® GM45 Express Chipset,
#     Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
# (II) Primary Device is:
# (II) resource ranges after xf86ClaimFixedResources() call:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
# (II) resource ranges after probing:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[B]
#     [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[B]
#     [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[B]
#     [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
#     [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[B]
#     [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[B]
# (**) intel(0): Depth 16, (--) framebuffer bpp 16
# (==) intel(0): RGB weight 565
# (==) intel(0): Default visual is TrueColor
# (II) intel(0): Integrated Graphics Chipset: Intel(R) Mobile Intel® GM45 Express Chipset
# (--) intel(0): Chipset: "Mobile Intel® GM45 Express Chipset"
# (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
# (II) intel(0): Resizable framebuffer: available (0 4)
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 7, (OK)
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 7, (OK)
# drmOpenByBusid: Searching for BusID pci:0000:00:02.0
# drmOpenDevice: node name is /dev/dri/card0
# drmOpenDevice: open result is 7, (OK)
# drmOpenByBusid: drmOpenMinor returns 7
# drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
# (II) [drm] DRM interface version 1.3
# (II) [drm] DRM open master succeeded.
# (II) intel(0): Output VGA1 using monitor section Monitor0
# (II) intel(0): Output LVDS1 has no monitor section
# (II) intel(0): Output VGA1 disconnected
# (II) intel(0): Output LVDS1 connected
# (II) intel(0): Using exact sizes for initial modes
# (II) intel(0): Output LVDS1 using initial mode 1440x900
# (==) intel(0): video overlay key set to 0x83e
# (==) intel(0): Will not try to enable page flipping
# (==) intel(0): Triple buffering disabled
# (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
# (==) intel(0): DPI set to (96, 96)
# (II) Loading sub module "fb"
# (II) LoadModule: "fb"
#  
# (II) Loading /usr/lib64/xorg/modules//libfb.so
# (II) Module fb: vendor="X.Org Foundation"
#     compiled for 1.5.3, module version = 1.0.0
#     ABI class: X.Org ANSI C Emulation, version 0.4
# (II) Loading sub module "ramdac"
# (II) LoadModule: "ramdac"
# (II) Module "ramdac" already built-in
# (II) do I need RAC?  No, I don't.
# (II) resource ranges after preInit:
#     [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[B]
#     [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[B]
#     [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[B]
#     [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[B]
#     [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[B]
#     [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[B]
#     [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[B]
#     [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[B]
#     [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[B]
#     [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[B]
#     [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[B]
# (**) intel(0): Kernel mode setting active, disabling FBC.
# (**) intel(0): Framebuffer compression disabled
# (**) intel(0): Tiling enabled
# (==) intel(0): VideoRam: -1 KB
# (II) intel(0): Attempting memory allocation with tiled buffers.
# (II) intel(0): Tiled allocation successful.
# (II) intel(0): Page Flipping disabled
# (II) UXA(0): Driver registered support for the following operations:
# (II)        solid
# (II)        copy
# (II)        composite (RENDER acceleration)
# (==) intel(0): Backing store disabled
# (==) intel(0): Silken mouse enabled
# (II) intel(0): Initializing HW Cursor
# (II) intel(0): No memory allocations
# (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
# (II) intel(0): DPMS enabled
# (==) intel(0): Intel XvMC decoder disabled
# (II) intel(0): Set up textured video
# (II) intel(0): direct rendering: Failed
# (--) RandR disabled
# (II) Initializing built-in extension MIT-SHM
# (II) Initializing built-in extension XInputExtension
# (II) Initializing built-in extension XTEST
# (II) Initializing built-in extension XKEYBOARD
# (II) Initializing built-in extension XINERAMA
# (II) Initializing built-in extension XFIXES
# (II) Initializing built-in extension RENDER
# (II) Initializing built-in extension RANDR
# (II) Initializing built-in extension COMPOSITE
# (II) Initializing built-in extension DAMAGE
# (II) Initializing built-in extension XEVIE
# (II) AIGLX: Screen 0 is not DRI capable
# (II) AIGLX: Loaded and initialized /usr/lib64/dri/swrast_dri.so
# (II) GLX: Initialized DRISWRAST GL provider for screen 0
# (II) intel(0): Setting screen physical size to 304 x 190
# (II) Synaptics touchpad driver version 1.0.0
# (--) Touchpad auto-dev sets device to /dev/input/event5
# (**) Option "Device" "/dev/input/event5"
# (II) Touchpad: x-axis range 1472 - 5472
# (II) Touchpad: y-axis range 1408 - 4448
# (II) Touchpad: pressure range 0 - 255
# (II) Touchpad: finger width range 0 - 0
# (II) Touchpad: buttons: left right middle
# (**) Option "SHMConfig" "on"
# (**) Option "LeftEdge" "1632"
# (**) Option "RightEdge" "5312"
# (**) Option "TopEdge" "1575"
# (**) Option "BottomEdge" "4281"
# (**) Option "FingerLow" "25"
# (**) Option "FingerHigh" "30"
# (**) Option "MaxTapTime" "180"
# (**) Option "MaxTapMove" "220"
# (**) Option "VertScrollDelta" "100"
# (**) Option "VertEdgeScroll" "on"
# (**) Option "HorizEdgeScroll" "on"
# (--) Touchpad touchpad found
# (**) Option "AlwaysCore"
# (**) Option "SendCoreEvents" "true"
# (**) Touchpad: always reports core events
# (II) evaluating device (Touchpad)
# (II) XINPUT: Adding extended input device "Touchpad" (type: TOUCHPAD)
# (--) Touchpad touchpad found
# (EE) config/hal: couldn't initialise context: (null) ((null))


Wenn ich nun X (startx) starten will, kommt es zwar hoch aber die Tastatur funktioniert nicht. :cursing:
Und wenn ich dann mit der Maus Links Klick Exit auf die Conole mache um wieder auf ein Terminal zu kommen- hängt sicher der Rechner mit schwarzem BIld auf.

Auch so habe ich kein Erfolg....

/etc/hal/fdi/policy/10-keymap.fdi

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.keymap">
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>

    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.rules" type="string">base</merge>

      <!-- If we're using Linux, we use evdev by default (falling back to
           keyboard otherwise). -->
      <merge key="input.xkb.model" type="string">keyboard</merge>
      <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
             string="Linux">
        <merge key="input.xkb.model" type="string">evdev</merge>
      </match>

      <merge key="input.xkb.layout" type="string">de</merge>
      <merge key="input.xkb.variant" type="string">nodeadkeys</merge>
    </match>
  </device>
</deviceinfo>


/etc/hal/fdi/policy/11-x11-synaptics.fdi

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.touchpad">
        <merge key="input.x11_driver" type="string">synaptics</merge>
       
        <!--Switch on shared memory, enables the driver to be configured at runtime-->
        <merge key="input.x11_options.SHMConfig" type="string">true</merge>

        <merge key="input.x11_options.Tapbutton1" type="string">1</merge>
        <merge key="input.x11_options.RTCornerButton" type="string">2</merge>
        <merge key="input.x11_options.RBCornerButton" type="string">3</merge>
        <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>
        <merge key="input.x11_options.HorizEdgeScroll" type="string">true</merge>
        <merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge>

        <merge key="input.x11_options.MinSpeed" type="string">0.08</merge>
        <merge key="input.x11_options.MaxSpeed" type="string">0.4</merge>
        <merge key="input.x11_options.AccelFactor" type="string">0.006</merge>

    </match>
  </device>
</deviceinfo>


/etc/X11/xorg.conf.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
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        Identifier  "Card0"
	Driver      "intel"
	#You may want to set UXA here for the new acceleration
	#framework based on GEM
	Option      "AccelMethod"   "EXA"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"

        DefaultDepth 16

        SubSection "Display"
                Viewport   0 0
                Depth     16
                #DRI does not work above 2048x2048 for pre-965
                #intel cards. Size is determined by xorg when
                #X is launched such that monitor resolutions fit.
                #Virtual 2048 2048
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "DRI"
        Mode         0666
EndSection


Wies auf dieser Page steht: http://www.cosy.sbg.ac.at/~shuber/misc-t400.php

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »cocox« (23.08.2009, 14:34)


14

23.08.2009, 15:01

zeig doch bitte mal die Ausgabe von

Quellcode

1
emerge --info

15

23.08.2009, 15:19

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
# Portage 2.1.6.13 (default/linux/amd64/2008.0, gcc-4.1.2, glibc-2.6.1-r0, 2.6.30-gentoo-r4 x86_64)
# =================================================================
# System uname: Linux-2.6.30-gentoo-r4-x86_64-Intel-R-_Core-TM-2_Duo_CPU_P8600_@_2.40GHz-with-glibc2.2.5
# Timestamp of tree: Sat, 22 Aug 2009 15:25:01 +0000
# app-shells/bash:    3.2_p17-r1
# dev-lang/python:    2.4.4-r13, 2.5.4-r3
# dev-python/pycrypto: 2.0.1-r6
# sys-apps/baselayout: 1.12.11.1
# sys-apps/sandbox:    1.2.18.1-r2
# sys-devel/autoconf:  2.61-r1
# sys-devel/automake:  1.9.6-r2, 1.10.1
# sys-devel/binutils:  2.18-r1
# sys-devel/gcc-config: 1.4.0-r4
# sys-devel/libtool:  1.5.24
# virtual/os-headers:  2.6.23-r3
# ACCEPT_KEYWORDS="amd64"
# CBUILD="x86_64-pc-linux-gnu"
# CFLAGS="-O2 -pipe -fomit-frame-pointer"
# CHOST="x86_64-pc-linux-gnu"
# CONFIG_PROTECT="/etc"
# CONFIG_PROTECT_MASK="/etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/revdep-rebuild /etc/terminfo /etc/udev/rules.d"
# CXXFLAGS="-O2 -pipe -fomit-frame-pointer"
# DISTDIR="/usr/portage/distfiles"
# FEATURES="distlocks fixpackages parallel-fetch protect-owned sandbox sfperms strict unmerge-orphans userfetch"
# GENTOO_MIRRORS="http://gentoo.mneisen.org/ http://mirror.bih.net.ba/gentoo/"
# LDFLAGS="-Wl,-O1"
# LINGUAS="en"
# MAKEOPTS="-j3"
# PKGDIR="/usr/portage/packages"
# PORTAGE_CONFIGROOT="/"
# PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
# PORTAGE_TMPDIR="/var/tmp"
# PORTDIR="/usr/portage"
# SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
# USE="X a52 aac acl acpi alsa amd64 arts at4 bash-completion berkdb bittorrent bzip2 c++ cdparanoia cdr cli cracklib crypt cups dbus dhcp dirac divx dri dvd dvdr dvdread encode exif ffmpeg fortran fuse gdbm gimp gpm gtk hal iconv ipv6 irc isdnlog jpeg kde lame laptop latex logrotate mikmod mmx mp2 mp3 mp4 mp4live mpeg mpeg2 mplayer mudflap multilib ncurses nls nomotif nptlonly nsplugin ogg ogm opengl openmp pam pcre perl png pppd pstricks python readline reflection samba scim sdl session sid smp spl sse sse2 sse3 ssl ssse3 sysfs tcpd unicode vcd vim-syntax wifi wma wmf wmp xcb xinerama xorg xulrunner zlib" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" ELIBC="glibc" INPUT_DEVICES="keyboard mouse synaptics evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LINGUAS="en" USERLAND="GNU" VIDEO_CARDS="intel fglrx radeon"
# Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, LANG, LC_ALL, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PORTDIR_OVERLAY

16

23.08.2009, 16:26

Puhh..,
laut deiner letzten Xorg.0.log sind die Font Verzeichnisse immer noch kaputt, bzw (or not valid), magst du sie nicht mal in Ordnung bringen?
Auch:

Zitat

(EE) config/hal: couldn't initialise context: (null) ((null))
schaut nicht gut aus, hast du evtl. den "hald" nicht gestartet?

Quellcode

1
# /etc/init.d/hald status


Ansonsten würde ich das gesamte System mal auf einen aktuellen Stand bringen, du scheinst da ja noch eine "alte" Stage3 aus 2008 für die Installation verwendet zu haben? Ich würde da bei einer neuinstallation eher eine aktuelle autobuild Stage3 verwenden, diese stehen auf den Mirrors unter /autobuild zu verfügung.
Aber nungut, es sollte dir auch möglich sein dein derzeitiges System auf einen aktuellen stand zu bringen, versuche mal

Quellcode

1
2
3
4
emerge --sync
emerge -avuDN world
etc-update
revdep-rebuild
sauber durchzubringen.
("revdep-rebuild" ist im Paket "app-portage/gentoolkit" enthalten)

Viel Erfolg

17

23.08.2009, 22:50

Vielen lieben Dank für deine unterstützende HIlfe.

Ich habe den stage genommen der auf gentoo.org empfohlen wird...

nun gut, ich probiere mein System zu upgraden mit:

emerge -avuDN world

Ein Packet wird hier geblockt...

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
# [ebuild    U ] dev-libs/expat-2.0.1-r1 [2.0.1] 436 kB
# [ebuild    U ] sys-devel/gnuconfig-20080928 [20070724] 41 kB
# [ebuild    U ] app-arch/bzip2-1.0.5-r1 [1.0.5] USE="-static" 822 kB
# [ebuild    U ] dev-libs/gmp-4.2.4 [4.2.2] USE="-nocxx (-doc%)" 1,671 kB
# [ebuild    U ] sys-devel/gcc-config-1.4.1 [1.4.0-r4] 0 kB
# [ebuild    U ] sys-devel/autoconf-wrapper-6 [4-r3] 0 kB
# [ebuild    U ] sys-libs/timezone-data-2009j [2007k] USE="nls" 361 kB
# [ebuild  R  ] sys-devel/patch-2.5.9  USE="-static (-build%)" 198 kB
# [ebuild    U ] app-arch/cpio-2.9-r2 [2.9-r1] USE="nls" 741 kB
# [ebuild    U ] sys-kernel/linux-headers-2.6.27-r2 [2.6.23-r3] 3,509 kB
# [ebuild    U ] sys-devel/m4-1.4.12 [1.4.11] USE="-examples (-nls%*)" 751 kB
# [ebuild    U ] sys-apps/sandbox-1.6-r2 [1.2.18.1-r2] 300 kB
# [ebuild    U ] dev-libs/mpfr-2.4.1_p1 [2.2.1_p5] 883 kB
# [ebuild    U ] net-misc/iputils-20071127 [20070202] USE="ipv6 -doc -static" 99 kB
# [ebuild  N    ] sys-apps/debianutils-3.1.3  USE="-static" 130 kB
# [ebuild    U ] dev-libs/openssl-0.9.8k [0.9.8g-r2] USE="(sse2) zlib -bindist -gmp -kerberos -test" 3,762 kB
# [ebuild    U ] sys-apps/busybox-1.13.2 [1.8.2] USE="pam -debug -make-symlinks -savedconfig (-selinux) -static" 1,999 kB
# [ebuild  N    ] virtual/acl-0  0 kB
# [ebuild    U ] sys-devel/flex-2.5.35 [2.5.33-r3] USE="nls -static" 1,228 kB
# [ebuild    U ] sys-apps/findutils-4.4.0 [4.3.11] USE="nls (-selinux) -static" 1,983 kB
# [ebuild    U ] app-arch/gzip-1.3.12-r1 [1.3.12] USE="nls -pic -static" 452 kB
# [ebuild    U ] sys-apps/net-tools-1.60_p20071202044231-r1 [1.60-r13] USE="nls -static" 180 kB
# [ebuild    U ] sys-apps/gawk-3.1.6 [3.1.5-r5] USE="nls" 1,818 kB
# [ebuild    U ] app-arch/tar-1.20 [1.19] USE="nls -static" 1,868 kB
# [ebuild    U ] net-misc/wget-1.11.1 [1.10.2] USE="ipv6 nls ssl -debug -static (-build%) (-socks5%)" 908 kB
# [ebuild    U ] app-portage/eix-0.17.0 [0.16.0] USE="deprecated%* nls -doc -sqlite -tools" 473 kB
# [ebuild    U ] sys-devel/binutils-2.18-r3 [2.18-r1] USE="nls -gold% -multislot -multitarget -test -vanilla" 14,629 kB
# [ebuild    U ] sys-apps/man-1.6f-r3 [1.6e-r3] USE="nls -lzma%" 249 kB
# [ebuild    U ] app-admin/python-updater-0.7 [0.2] 7 kB
# [ebuild    U ] sys-libs/glibc-2.9_p20081201-r2 [2.6.1] USE="(multilib) nls -debug -gd -glibc-omitfp (-hardened) -profile (-selinux) -vanilla" 16,621 kB
# [ebuild    U ] sys-libs/cracklib-2.8.13 [2.8.10] USE="nls python" 580 kB
# [ebuild  R  ] sys-libs/ncurses-5.6-r2  USE="gpm unicode -debug -doc -minimal -nocxx -profile -trace (-bootstrap%) (-build%)" 2,353 kB
# [ebuild    U ] sys-apps/texinfo-4.13 [4.8-r5] USE="nls -static (-build%)" 1,528 kB
# [ebuild    U ] app-shells/bash-3.2_p39 [3.2_p17-r1] USE="nls -afs -bashlogger -examples% -plugins -vanilla" 2,582 kB
# [ebuild    U ] sys-libs/gpm-1.20.5 [1.20.1-r6] USE="(-selinux)" 1,269 kB
# [ebuild    U ] sys-apps/less-429 [416] USE="unicode" 492 kB
# [ebuild    U ] app-editors/nano-2.1.9 [2.0.6] USE="ncurses nls unicode -debug -justify -minimal -slang -spell" 1,450 kB
# [ebuild    U ] sys-devel/autoconf-2.63-r1 [2.61-r1] USE="-emacs" 1,527 kB
# [ebuild    U ] sys-libs/readline-5.2_p13 [5.2_p7] 2,023 kB
# [ebuild    U ] app-admin/perl-cleaner-1.05 [1.04.3] 6 kB
# [ebuild    U ] sys-apps/which-2.19 [2.16] 130 kB
# [ebuild  N    ] virtual/pager-0  0 kB
# [ebuild    U ] sys-devel/automake-1.10.2 [1.10.1] 915 kB
# [ebuild    U ] sys-devel/libtool-1.5.26 [1.5.24] USE="-vanilla" 2,893 kB
# [ebuild  NS  ] sys-libs/db-4.6.21_p4 [4.3.29-r2, 4.5.20_p2] USE="-doc -java -nocxx -tcl -test" 11,649 kB
# [ebuild    U ] sys-apps/util-linux-2.14.2 [2.13.1.1] USE="crypt nls unicode -loop-aes -old-linux (-selinux) -slang (-uclibc)" 2,888 kB
# [ebuild    U ] sys-apps/shadow-4.1.2.2 [4.0.18.1-r1] USE="cracklib nls pam -audit% (-selinux) -skey (-nousuid%)" 1,658 kB
# [ebuild    U ] sys-apps/groff-1.20.1-r1 [1.19.2-r1] USE="X* -examples% (-cjk%)" LINGUAS="-ja%" 3,511 kB
# [ebuild    U ] sys-apps/attr-2.4.43 [2.4.39] USE="nls" 115 kB
# [ebuild  N    ] dev-libs/libpcre-7.9-r1  USE="bzip2 cxx (unicode) zlib -doc -static-libs" 842 kB
# [ebuild    U ] sys-process/psmisc-22.6 [22.5-r2] USE="X* ipv6 nls (-selinux)" 277 kB
# [ebuild    U ] sys-apps/acl-2.2.47 [2.2.45] USE="nls (-nfs)" 152 kB
# [ebuild  NS  ] dev-lang/python-2.6.2-r1 [2.4.4-r13, 2.5.4-r3] USE="berkdb gdbm ipv6 ncurses readline ssl threads xml -build -doc -examples -sqlite -tk -ucs2 -wininst" 10,906 kB
# [ebuild    U ] sys-devel/libperl-5.8.8-r2 [5.8.8-r1] USE="berkdb gdbm -debug -ithreads" 9,887 kB
# [ebuild    U ] sys-apps/grep-2.5.4-r1 [2.5.1a-r1] USE="nls pcre (-static%)" 707 kB
# [ebuild    U ] net-misc/openssh-5.2_p1-r1 [4.7_p1-r6] USE="X* pam tcpd -X509 -hpn -kerberos -ldap -libedit -pkcs11% (-selinux) -skey -smartcard -static (-chroot%)" 1,060 kB
# [ebuild    U ] sys-apps/coreutils-7.4 [6.10-r1] USE="acl nls -caps% -gmp% (-selinux) -static -vanilla -xattr" 9,489 kB
# [ebuild    U ] sys-apps/sed-4.2 [4.1.5] USE="acl%* nls -static" 862 kB
# [ebuild    U ] dev-libs/libxml2-2.7.3-r2 [2.6.30-r1] USE="ipv6 python readline -debug -doc -examples% -test (-bootstrap%) (-build%)" 4,678 kB
# [ebuild    U ] sys-apps/file-4.23 [4.21-r1] USE="python" 551 kB
# [ebuild    U ] net-misc/rsync-3.0.5 [2.6.9-r6] USE="acl iconv%* ipv6 -static -xattr% -xinetd" 759 kB
# [ebuild    U ] sys-apps/module-init-tools-3.5 [3.4] USE="-old-linux" 208 kB
# [ebuild  NS  ] sys-devel/gcc-4.3.2-r3 [4.1.2] USE="fortran gtk mudflap (multilib) nls openmp (-altivec) -bootstrap -build -doc (-fixed-point) -gcj (-hardened) -ip28 -ip32r10k -libffi -multislot (-n32) (-n64) -nocxx -nopie -nptl -objc -objc++ -objc-gc -test -vanilla" 57,645 kB
# [ebuild    U ] app-misc/ca-certificates-20080809 [20070303-r1] 148 kB
# [ebuild  N    ] sys-apps/man-pages-posix-2003a  949 kB
# [ebuild    U ] sys-apps/man-pages-3.21 [2.76] USE="nls" LINGUAS="-cs% -da% -de% -es% -fr% -it% -ja% -nl% -pl% -ro% -ru% -zh_CN%" 1,068 kB
# [blocks B    ] <sys-apps/man-pages-3 ("<sys-apps/man-pages-3" is blocking sys-apps/man-pages-posix-2003a)
#  
# Total: 66 packages (56 upgrades, 5 new, 3 in new slots, 2 reinstalls), Size of downloads: 193,844 kB
# Conflict: 1 block (1 unsatisfied)
#  
#  * Error: The above package list contains packages which cannot be
#  * installed at the same time on the same system.
#  
#   ('ebuild', '/', 'sys-apps/man-pages-posix-2003a', 'merge') pulled in by
#     sys-apps/man-pages-posix required by ('ebuild', '/', 'sys-apps/man-pages-3.21', 'merge')
#  
#  
# For more information about Blocked Packages, please refer to the following
# section of the Gentoo Linux x86 Handbook (architecture is irrelevant):
#  
# http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?full=1#blocked
#  

18

23.08.2009, 23:14

Hehe.. :thumbup:

Diesen Block solltest du durch deinstallieren von "sys-apps/man-pages-3" auflösen können.

Quellcode

1
2
3
# emerge -C sys-apps/man-pages-3
oder
# emerge -C =sys-apps/man-pages-3

Ansonsten siehe zb auch [gelöst] emerge --update --deep world funktioniert nicht

19

24.08.2009, 18:55

So ich habe das ganze jetzt mal durchgespielt ...
Allerdings hat es nichts gebracht.

Wenn ich X -configure ausführe und danach mein x mit: X -config /root/xorg.conf.new starten will, bekomme ich ein kariertes BIld mit einer Maus (X).
Danach tut sich allerdings nichts mehr. Wenn ich wieder mit Ctrl - Alt F1 auf mein alten Screen wechsle steht da:

(Habe nur die wichtigsten Zeilen hingeschrieben)

Quellcode

1
2
3
4
5
(EE) RADEON(0): Cannot read V_BIOS (3) Input/Output error
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:                 Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                                 Ignoring extra symbols
Error from xkbcomp are not fatal to the X server


Hier mein aktuelle emrge --info:

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
# Portage 2.1.6.13 (default/linux/amd64/2008.0, gcc-4.1.2, glibc-2.9_p20081201-r2, 2.6.30-gentoo-r4 x86_64)
# =================================================================
# System uname: Linux-2.6.30-gentoo-r4-x86_64-Intel-R-_Core-TM-2_Duo_CPU_P8600_@_2.40GHz-with-gentoo-1.12.11.1
# Timestamp of tree: Sun, 23 Aug 2009 20:15:01 +0000
# app-shells/bash:    3.2_p39
# dev-lang/python:    2.4.4-r13, 2.5.4-r3, 2.6.2-r1
# dev-python/pycrypto: 2.0.1-r6
# sys-apps/baselayout: 1.12.11.1
# sys-apps/sandbox:    1.6-r2
# sys-devel/autoconf:  2.63-r1
# sys-devel/automake:  1.9.6-r2, 1.10.2
# sys-devel/binutils:  2.18-r3
# sys-devel/gcc-config: 1.4.1
# sys-devel/libtool:  1.5.26
# virtual/os-headers:  2.6.27-r2
# ACCEPT_KEYWORDS="amd64"
# CBUILD="x86_64-pc-linux-gnu"
# CFLAGS="-O2 -pipe -fomit-frame-pointer"
# CHOST="x86_64-pc-linux-gnu"
# CONFIG_PROTECT="/etc"
# CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/udev/rules.d"
# CXXFLAGS="-O2 -pipe -fomit-frame-pointer"
# DISTDIR="/usr/portage/distfiles"
# FEATURES="distlocks fixpackages parallel-fetch protect-owned sandbox sfperms strict unmerge-orphans userfetch"
# GENTOO_MIRRORS="http://gentoo.mneisen.org/ http://mirror.bih.net.ba/gentoo/"
# LDFLAGS="-Wl,-O1"
# LINGUAS="en"
# MAKEOPTS="-j3"
# PKGDIR="/usr/portage/packages"
# PORTAGE_CONFIGROOT="/"
# PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --stats --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages"
# PORTAGE_TMPDIR="/var/tmp"
# PORTDIR="/usr/portage"
# SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
# USE="X a52 aac acl acpi alsa amd64 arts at4 bash-completion berkdb bittorrent bzip2 c++ cdparanoia cdr cli cracklib crypt cups dbus dhcp dirac divx dri dvd dvdr dvdread encode exif ffmpeg fortran fuse gdbm gimp gpm gtk hal iconv ipv6 irc isdnlog jpeg kde lame laptop latex logrotate mikmod mmx mp2 mp3 mp4 mp4live mpeg mpeg2 mplayer mudflap multilib ncurses nls nomotif nptlonly nsplugin ogg ogm opengl openmp pam pcre perl png pppd pstricks python readline reflection samba scim sdl session sid smp spl sse sse2 sse3 ssl ssse3 sysfs tcpd unicode vcd vim-syntax wifi wma wmf wmp xcb xinerama xorg xulrunner zlib" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" ELIBC="glibc" INPUT_DEVICES="keyboard mouse synaptics evdev" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LINGUAS="en" USERLAND="GNU" VIDEO_CARDS="intel fglrx radeon"
# Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, FFLAGS, INSTALL_MASK, LANG, LC_ALL, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PORTDIR_OVERLAY


Und Hier die generierte xorg.conf.new

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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
Section "ServerLayout"
Identifier    "X.org Configured"
Screen      0  "Screen0" 0 0
Screen      1  "Screen1" RightOf "Screen0"
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  "dri"
Load  "dbe"
Load  "record"
Load  "glx"
Load  "xtrap"
Load  "extmod"
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 "Monitor"
Identifier  "Monitor1"
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    "NoAccel"                # [<bool>]
#Option    "SWcursor"              # [<bool>]
#Option    "Dac6Bit"                # [<bool>]
#Option    "Dac8Bit"                # [<bool>]
#Option    "BusType"                # [<str>]
#Option    "CPPIOMode"              # [<bool>]
#Option    "CPusecTimeout"          # <i>
#Option    "AGPMode"                # <i>
#Option    "AGPFastWrite"          # [<bool>]
#Option    "AGPSize"                # <i>
#Option    "GARTSize"              # <i>
#Option    "RingSize"              # <i>
#Option    "BufferSize"            # <i>
#Option    "EnableDepthMoves"      # [<bool>]
#Option    "EnablePageFlip"        # [<bool>]
#Option    "NoBackBuffer"          # [<bool>]
#Option    "DMAForXv"              # [<bool>]
#Option    "FBTexPercent"          # <i>
#Option    "DepthBits"              # <i>
#Option    "PCIAPERSize"            # <i>
#Option    "AccelDFS"              # [<bool>]
#Option    "IgnoreEDID"            # [<bool>]
#Option    "DisplayPriority"        # [<str>]
#Option    "PanelSize"              # [<str>]
#Option    "ForceMinDotClock"      # <freq>
#Option    "ColorTiling"            # [<bool>]
#Option    "VideoKey"              # <i>
#Option    "RageTheatreCrystal"     # <i>
#Option    "RageTheatreTunerPort"     # <i>
#Option    "RageTheatreCompositePort"     # <i>
#Option    "RageTheatreSVideoPort"     # <i>
#Option    "TunerType"              # <i>
#Option    "RageTheatreMicrocPath"     # <str>
#Option    "RageTheatreMicrocType"     # <str>
#Option    "ScalerWidth"            # <i>
#Option    "RenderAccel"            # [<bool>]
#Option    "SubPixelOrder"          # [<str>]
#Option    "ShowCache"              # [<bool>]
#Option    "DynamicClocks"          # [<bool>]
#Option    "VGAAccess"              # [<bool>]
#Option    "ReverseDDC"            # [<bool>]
#Option    "LVDSProbePLL"          # [<bool>]
#Option    "AccelMethod"            # <str>
#Option    "DRI"                    # [<bool>]
#Option    "ConnectorTable"        # <str>
#Option    "DefaultConnectorTable"     # [<bool>]
#Option    "DefaultTMDSPLL"        # [<bool>]
#Option    "TVDACLoadDetect"        # [<bool>]
#Option    "ForceTVOut"            # [<bool>]
#Option    "TVStandard"            # <str>
#Option    "IgnoreLidStatus"        # [<bool>]
#Option    "DefaultTVDACAdj"        # [<bool>]
#Option    "Int10"                  # [<bool>]
#Option    "EXAVSync"              # [<bool>]
#Option    "ATOMTVOut"              # [<bool>]
#Option    "R4xxATOM"              # [<bool>]
Identifier  "Card0"
Driver      "radeon"
VendorName  "ATI Technologies Inc"
BoardName  "Mobilitiy Radeon HD 3400 Series"
BusID      "PCI:1:0:0"
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    "NoAccel"                # [<bool>]
#Option    "SWcursor"              # [<bool>]
#Option    "ColorKey"              # <i>
#Option    "CacheLines"            # <i>
#Option    "Dac6Bit"                # [<bool>]
#Option    "DRI"                    # [<bool>]
#Option    "NoDDC"                  # [<bool>]
#Option    "ShowCache"              # [<bool>]
#Option    "XvMCSurfaces"          # <i>
#Option    "PageFlip"              # [<bool>]
Identifier  "Card1"
Driver      "intel"
VendorName  "Intel Corporation"
BoardName  "Mobile 4 Series Chipset Integrated Graphics Controller"
BusID      "PCI:0:2: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
 
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


Ich möchte jetzt XFCE4 installieren aber ein emerge xfce4 bringt mir: there are no ebuilds to satisfy: "xfce4"

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »cocox« (24.08.2009, 20:32)


20

25.08.2009, 10:29

Zitat

Wenn ich X -configure ausführe und danach mein x mit: X -config /root/xorg.conf.new starten will, bekomme ich ein kariertes BIld mit einer Maus (X).

Dies bedeutet: X11 funktioniert. Aber du hast keinen WindowManager geladen.


Zitat

Ich möchte jetzt XFCE4 installieren aber ein emerge xfce4 bringt mir: there are no ebuilds to satisfy: "xfce4"

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
# eix -c xfce4
[N] dev-util/xfce4-dev-tools ((~)4.7.0): set of scripts and m4/autoconf macros that ease build system maintenance for XFCE
[N] x11-misc/xfce4-notifyd ((~)0.1.0_p20090722): Xfce4 notification daemon
[N] x11-themes/xfce4-icon-theme (4.4.3!b!s): Default icon theme for Xfce4, called Rodent.
[N] xfce-base/libxfce4menu (4.6.1!t): a freedesktop.org compliant menu library for Xfce4
[N] xfce-base/libxfce4util (4.6.1): Basic utility library for Xfce4
[N] xfce-base/xfce4-meta (4.6.1): Xfce4 Desktop Environment (meta package)
[N] xfce-base/xfce4-panel (4.6.1): Panel for Xfce4
[N] xfce-base/xfce4-session (4.6.1): Session manager for Xfce4
[N] xfce-base/xfce4-settings ((~)4.6.1-r1): Settings daemon for Xfce4
[N] xfce-extra/xfce4-appfinder (4.6.1): Application finder
[N] xfce-extra/xfce4-battery (0.5.1): Battery status panel plugin
[N] xfce-extra/xfce4-cellmodem (0.0.5!t): Panel plugin for monitoring cellular modems - GPRS/UMTS(3G)/HSDPA(3.5G)
[N] xfce-extra/xfce4-clipman-plugin ((~)1.0.2): a simple cliboard history manager for Xfce4 Panel
[N] xfce-extra/xfce4-cpufreq-plugin (0.0.1): A panel plugin for showing information about cpufreq settings
[N] xfce-extra/xfce4-cpugraph (0.4.0): CPU load panel plugin
[N] xfce-extra/xfce4-datetime (0.6.1): Panel plugin displaying date, time and small calendar
[N] xfce-extra/xfce4-dict ((~)0.5.3): plugin and stand-alone application to query dict.org
[N] xfce-extra/xfce4-diskperf (2.2.0): Disk usage and performance panel plugin
[N] xfce-extra/xfce4-eyes (4.4.0): panel plugin that adds eyes which watch your every step
[N] xfce-extra/xfce4-fsguard (0.4.2): Filesystem guard panel plugin
[N] xfce-extra/xfce4-genmon (3.2): Cyclically spawns the executable, captures its output and displays the result into the panel.
[N] xfce-extra/xfce4-gvfs-mount ((~)0.0.4): Nice little mounter working with gvfs
[N] xfce-extra/xfce4-mailwatch (1.1.0): Mail notification panel plugin
[N] xfce-extra/xfce4-mixer (4.6.1): Volume control application using gstreamer
[N] xfce-extra/xfce4-modemlights ((~)0.1.3.99): a panel plugin to turn dialup (ppp) connections on/off
[N] xfce-extra/xfce4-mount-plugin (0.5.5): Mount plugin for Xfce4 panel
[N] xfce-extra/xfce4-mpc-plugin (0.3.3): Music Player Daemon (mpd) panel plugin
[N] xfce-extra/xfce4-netload (0.4.0): Netload panel plugin
[N] xfce-extra/xfce4-notes ((~)1.7.0): Xfce4 panel sticky notes plugin
[N] xfce-extra/xfce4-places ((~)1.2.0): Places menu plug-in for panel, like GNOME's
[N] xfce-extra/xfce4-power-manager ((~)0.8.3.1): Power manager for Xfce4
[N] xfce-extra/xfce4-quicklauncher (1.9.4): Xfce4 panel quicklauncher plugin
[N] xfce-extra/xfce4-radio-plugin ((~)0.4.2): Panel plugin to control V4L radio device
[N] xfce-extra/xfce4-screenshooter ((~)1.6.0): Xfce4 screenshooter application and panel plugin
[N] xfce-extra/xfce4-sensors-plugin (0.10.99.6): acpi, lm_sensors and hddtemp panel plugin
[N] xfce-extra/xfce4-smartbookmark-plugin (0.4.2): Xfce panel smart-bookmark plugin
[N] xfce-extra/xfce4-stopwatch-plugin ((~)0.2.0): panel plugin that keeps track of elapsed time
[N] xfce-extra/xfce4-systemload (0.4.2): System load monitor panel plugin
[N] xfce-extra/xfce4-taskmanager (0.4.1): Task Manager
[N] xfce-extra/xfce4-time-out (0.1.1): Panel plugin to take a break from computer work.
[N] xfce-extra/xfce4-timer (0.6.1): Timer panel plugin
[N] xfce-extra/xfce4-verve (0.3.6): Command line panel plugin
[N] xfce-extra/xfce4-volstatus-icon ((~)0.1.0-r1): Systray status icon for safe unmount/eject of volumes
[N] xfce-extra/xfce4-wavelan ((~)0.5.5): Wireless monitor panel plugin
[N] xfce-extra/xfce4-weather ((~)0.7.3): panel plugin that shows the current temperature and weather condition.
[N] xfce-extra/xfce4-wmdock-plugin ((~)0.3.2): a compatibility layer for running WindowMaker dockapps on Xfce4.
[N] xfce-extra/xfce4-xfapplet-plugin (0.1.0): Panel plugin to support GNOME applets
[N] xfce-extra/xfce4-xkb-plugin ((~)0.5.3.3-r1): XKB layout switching panel plugin


Schätze xfce4-meta würde passen, hm? Kennst du "eix"?
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>