Bonjour,

J'ai un problème avec Cygwin X sous Windows xp.
Mon install Cygwin fonctionnait bien puis suite à l'install de nouveaux packages, j'ai du réinstaller Cygwin X.
Depuis il m'est impossible de lancer mon serveur X.

Lorsque je fais un startx, j'obtiens 2 fenetres d'erreur, une me disant "failed to activate core devices" puis une seconde "segmentation fault".

Pour info voici mon .xinitrc

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
#!/bin/sh
 
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
 
# merge in defaults and keymaps
 
if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi
 
if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi
 
if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
 
fi
 
if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi
 
# start some nice programs
 
#twm &
wmaker &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
exec xterm -geometry 80x66+0+0 -name login
et le log que j'obtiens:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
Welcome to the XWin X Server
Vendor: The Cygwin/X Project
Release: 1.9.2.0 (10902000)
Build Date: 2010-11-03
 
XWin was started with the following command line:
 
/usr/bin/X :0 -auth /home/[user]/.serverauth.4296 
 
ddxProcessArgument - Initializing default screens
winInitializeScreenDefaults - primary monitor w 1280 h 1024
winInitializeDefaultScreens - native DPI x 96 y 96
_XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/[host]:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
[348876.296] winInitializeScreens - 1
[348876.296] winInitializeScreen - 0
[348876.296] (II) xorg.conf is not supported
[348876.296] (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information
[348876.296] LoadPreferences: /home/[user]/.XWinrc not found
[348876.296] LoadPreferences: Loading /etc/X11/system.XWinrc
[348876.296] LoadPreferences: Done parsing the configuration file...
[348876.296] winGetDisplay: DISPLAY=:0.0
[348876.296] winDetectSupportedEngines - Windows NT/2000/XP
[348876.296] winDetectSupportedEngines - DirectDraw installed
[348876.296] winDetectSupportedEngines - Allowing PrimaryDD
[348876.296] winDetectSupportedEngines - DirectDraw4 installed
[348876.296] winDetectSupportedEngines - Returning, supported engines 0000001f
[348876.296] winSetEngine - Using Shadow DirectDraw NonLocking
[348876.296] winScreenInit - Using Windows display depth of 32 bits per pixel
[348876.359] winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff
[348876.359] Screen 0 added at virtual desktop coordinate (0,0).
[348876.359] MIT-SHM extension disabled due to lack of kernel support
[348876.375] XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel
[348876.562] (II) AIGLX: Loaded and initialized /usr/lib/dri/swrast_dri.so
[348876.562] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[348876.578] [dix] Could not init font path element /usr/share/fonts/TTF/, removing from list!
[348876.578] [dix] Could not init font path element /usr/share/fonts/OTF/, removing from list!
[348876.578] [dix] Could not init font path element /usr/share/fonts/Type1/, removing from list!
[348877.046] (EE) XKB: Could not invoke xkbcomp
[348877.046] (EE) XKB: Couldn't compile keymap
[348877.046] XKB: Failed to compile keymap
[348877.046] Keyboard initialization failed. This could be a missing or incorrect setup of xkeyboard-config.
[348877.046] 
Fatal server error:
[348877.046] Failed to activate core devices.
j'ai essayé d'installer xkbcomp, sans succès...

Si vous avez des idées, je suis preneur.......
Merci d'avance!