Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 21/10/2007, à 18:41

Kendy

[gutsy] Executing /usr/bin/gnome-session failed (Résolu)

bonjour,

je me décide à  poster un msg pour demander un peu d'aide concernant un pb survenu après maj de feisty vers Gutsy..un beau 18 octobre..
ma config: acer ferrari 4005 (amd64)

Mon problème:
à  l'écran de connexion, kan je choisis la session gnome (celle par defaut)..mon bureau ne s'affiche pas, je n'ai qu'un ptit terminal qui apparait (uniquement ça, sans décoration, sans panel, rien que ce terminal).

kendy@ferrari:~$ more .xsession-errors 
      1 
      2 (process:7156): Gtk-WARNING **: This process is currently running setuid or setgid.
      3 This is not a supported use of GTK+. You must create a helper
      4 program instead. For further details, see:
      5 
      6     http://www.gtk.org/setuid.html
      7 
      8 Refusing to initialize GTK+.
      9 
     10 (process:7160): Gtk-WARNING **: This process is currently running setuid or setgid.
     11 This is not a supported use of GTK+. You must create a helper
     12 program instead. For further details, see:
     13 
     14     http://www.gtk.org/setuid.html
     15 
     16 Refusing to initialize GTK+.
     17 /etc/gdm/Xsession: Beginning session setup...
     18 This is BASH 3.2 - DISPLAY on :0
     19 
     20 dimanche 21 octobre 2007, 17:25:00 (UTC+0200)
     21 You have a truly strong individuality.
     22 /etc/gdm/Xsession: Executing /usr/bin/gnome-session failed, will try to run x-terminal-emulator
     23 /etc/gdm/Xsession: line 201: zenity is /usr/bin/zenity: Aucun fichier ou répertoire de ce type
kendy@ferrari:~$

j'ai donc ouvert /etc/gdm/Xsession , voici son contenu:

#!/bin/sh
#
# This is SORT OF LIKE an X session, but not quite.  You get a command as the
# first argument (it could be multiple words, so run it with "eval").  As a
# special case, the command can be:
#  failsafe - Run an xterm only
#  default - Run the appropriate Xclients startup (see the code below)
#  custom - Run ~/.xsession and if that's not available run 'default'
#
# (Note that other arguments could also follow, but only the command one is
# right now relevant and supported)
#
# The output is ALREADY redirected to .xsession-errors in GDM.  This way
# .xsession-errors actually gets more output such as if the PreSession script
# is failing.  This also prevents DoS attacks if some app in the users session
# can be prodded to dump lots of stuff on the stdout/stderr.  We wish to be
# robust don't we?  In case you wish to use an existing script for other DM's,
# you can just not redirect when GDMSESSION is set.  GDMSESSION will always
# be set from gdm.
#
# Also note that this is not run as a login shell, this is just executed.
#
# based on:
# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $

PROGNAME=Xsession

message () {
  # pretty-print messages of arbitrary length; use xmessage if it
  # is available and $DISPLAY is set
  MESSAGE="$PROGNAME: $*"
  echo "$MESSAGE" | fold -s -w ${COLUMNS:-80} >&2
  if [ -n "$DISPLAY" ]; then
    if [ -n "$zenity" ]; then
      "$zenity" --info --text "`gettextfunc "$MESSAGE"`"
    elif [ -n "$xmessage" ]; then
      echo "$MESSAGE" | fold -s -w ${COLUMNS:-80} | $xmessage -center -file -
    fi
  fi
}

message_nonl () {
  # pretty-print messages of arbitrary length (no trailing newline); use
  # xmessage if it is available and $DISPLAY is set
  MESSAGE="$PROGNAME: $*"
  echo -n "$MESSAGE" | fold -s -w ${COLUMNS:-80} >&2;
  if [ -n "$DISPLAY" ]; then
    if [ -n "$zenity" ]; then
      "$zenity" --info --text "`gettextfunc "$MESSAGE"`"
    elif [ -n "$xmessage" ]; then
      echo -n "$MESSAGE" | fold -s -w ${COLUMNS:-80} | $xmessage -center -file -
    fi
  fi
}

errormsg () {
  # exit script with error
  message "$*"
  exit 1
}

internal_errormsg () {
  # exit script with error; essentially a "THIS SHOULD NEVER HAPPEN" message
  # One big call to message() for the sake of xmessage; if we had two then
  # the user would have dismissed the error we want reported before seeing the
  # request to report it.
  errormsg "$*" \
           "Please report the installed version of the \"xfree86-common\"" \
           "package and the complete text of this error message to" \
           "<debian-x@lists.debian.org>."
}

run_parts () {
  # until run-parts --noexec is implemented
  if [ -z "$1" ]; then
    internal_errormsg "run_parts() called without an argument."
  fi
  if [ ! -d "$1" ]; then
    internal_errormsg "run_parts() called, but \"$1\" does not exist or is" \
                      "not a directory."
  fi
  for F in $(ls $1); do
    if expr "$F" : '[[:alnum:]_-]\+$' > /dev/null 2>&1; then
      if [ -f "$1/$F" ]; then
        echo "$1/$F"
      fi
    fi
  done
}
# initialize variables for use by all session scripts

OPTIONFILE=/etc/X11/Xsession.options

SYSRESOURCES=/etc/X11/Xresources
USRRESOURCES=$HOME/.Xresources

SYSSESSIONDIR=/etc/X11/Xsession.d
USERXSESSION=$HOME/.xsession
ALTUSERXSESSION=$HOME/.Xsession

# this will go into the .xsession-errors along with all other echo's
# good for debugging where things went wrong
echo "$0: Beginning session setup..."

# First read /etc/profile and .profile
test -f /etc/profile && . /etc/profile
test -f "$HOME/.profile" && . "$HOME/.profile"
# Second read /etc/xprofile and .xprofile for X specific setup
test -f /etc/xprofile && . /etc/xprofile
test -f "$HOME/.xprofile" && . "$HOME/.xprofile"

# Translation stuff
if [ -x "/usr/lib/gdm/gdmtranslate" ] ; then
  gdmtranslate="/usr/lib/gdm/gdmtranslate"
else
  gdmtranslate=
fi

# Note that this should only go to zenity dialogs which always expect utf8
gettextfunc () {
  if [ "x$gdmtranslate" != "x" ] ; then
    "$gdmtranslate" --utf8 "$1"
  else
    echo "$1"
  fi
}

zenity=`which zenity 2>/dev/null`
xmessage=`which xmessage 2>/dev/null`

command="$1"

if [ -z "$command" ] ; then
  command=failsafe
fi

if [ x"$command" = xfailsafe ] ; then
  if [ -n "$zenity" ] ; then
    "$zenity" --info --text "`gettextfunc "This is the failsafe xterm session.  Windows now have focus only if you have your cursor above them.  To get out of this mode type 'exit' in the window in the upper left corner"`"
  else
    echo "$0: Starting the failsafe xterm session."
  fi
  exec xterm -geometry 80x24+0+0
fi

# clean up after xbanner
freetemp=`which freetemp 2>/dev/null`
if [ -n "$freetemp" ] ; then
        "$freetemp"
fi

usermodmap="$HOME/.Xmodmap"
userxkbmap="$HOME/.Xkbmap"

if [ -f "$userxkbmap" ]; then
    setxkbmap `cat "$userxkbmap"`
    XKB_IN_USE=yes
fi

# xkb and xmodmap don't play nice together
if [ -z "$XKB_IN_USE" ]; then
    if [ -f "$usermodmap" ]; then
       xmodmap "$usermodmap"
    fi
fi

unset XKB_IN_USE

# if GDM_LANG isn't first in LANGUAGE, then unset it.
if [ -n "$GDM_LANG" ]; then
    if [ -n "$LANGUAGE" ]; then
        if echo "$LANGUAGE" | grep -q -- "^$GDM_LANG"; then
           :
        else
           unset LANGUAGE
        fi
    fi
fi

# The default Debian session runs xsession first, so we just do that for
# "custom"
if [ "x$command" = "xcustom" ] ; then
  shift
  set default $*
fi

# use run-parts to source every file in the session directory; we source
# instead of executing so that the variables and functions defined above
# are available to the scripts, and so that they can pass variables to each
# other
SESSIONFILES=$(run_parts $SYSSESSIONDIR)
if [ -n "$SESSIONFILES" ]; then
  for SESSIONFILE in $SESSIONFILES; do
	. $SESSIONFILE
  done
fi

echo "$0: Executing $command failed, will try to run x-terminal-emulator"

if [ -n "$zenity" ] ; then
        "$zenity" --info --text "`gettextfunc "I could not start your session and so I have started the failsafe xterm session.  Windows now have focus only if you have your cursor above them.  To get out of this mode type 'exit' in the window in the upper left corner"`"
fi

exec x-terminal-emulator -geometry 80x24+0+0

je suppose que c'est la dernière ligne qui m'affiche mon fameux terminal...
et que juste avant, le test de non nullité de la variable zenity renvoi false...
(j'ai essayé de déclarer zenity=/usr/bin/zenity , ça n'a rien changé, install/reinstall non plus)


Première précision:
arrivé dans ce terminal, quand je tape :    gnome-session &
tout se lance parfaitement, et j'ai mon bureau habituel !! impec !

2nd précision:
si je choisis la session de secours Gnome, tout marche du premier coup, j'ai bien mon bureau, sans passer par le terminal...

3eme précision:

kendy@ferrari:~$ ll /usr/share/xsessions
-rw-r--r-- 1 root root 2,9K 2007-10-05 10:31 gnome.desktop
-rw-r--r-- 1 root root  194 2007-02-02 19:17 wmaker.desktop

j'utilise parfois wmaker, eh bien en choisissant la session wmaker j'ai aussi droit au terminal, uniquement.


Idée: je voulais copier les paramètres qu'utilisent cette session de secours..pour les donner à  ma session par defaut, mais je n'ai pas trouvé comment faire...

merci d'avance à  ceux qui pourront m'aider !!
...bon à  part ça c k'du bonheur ubuntu j'y suis passé complètement, depuis 1an plus de windows big_smile



ps2 : à  tout hasard je poste qq log.

==== contenu de /etc/X11/Xsession.d

kendy@ferrari:/etc/X11/Xsession.d$ tree -augsh
.
|-- [root     root      271]  10fglrx
|-- [root     root     1.8K]  20x11-common_process-args
|-- [root     root      899]  30x11-common_xresources
|-- [root     root     1.5K]  50x11-common_determine-startup
|-- [root     root      361]  55gnome-session_gnomerc
|-- [root     root       80]  60xdg-user-dirs-update
|-- [root     root     4.0K]  70fglrx_32bit_dri
|   `-- [root     root      131]  fglrx.xsession
|-- [root     root      431]  80ubuntu-xmodmap
|-- [root     root      612]  90x11-common_ssh-agent
`-- [root     root      166]  99x11-common_start

1 directory, 10 files
kendy@ferrari:/var/log/gdm$ more :0.log
      1 
      2 X Window System Version 1.3.0
      3 Release Date: 19 April 2007
      4 X Protocol Version 11, Revision 0, Release 1.3
      5 Build Operating System: Linux Ubuntu (xorg-server 2:1.3.0.0.dfsg-12ubuntu8)
      6 Current Operating System: Linux ferrari 2.6.22-14-generic #1 SMP Sun Oct 14 21:45:15 GMT 2007 x86_64
      7 Build Date: 29 September 2007
      8         Before reporting problems, check http://wiki.x.org
      9         to make sure that you have the latest version.
     10 Module Loader present
     11 Markers: (--) probed, (**) from config file, (==) default setting,
     12         (++) from command line, (!!) notice, (II) informational,
     13         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
     14 (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 21 17:24:45 2007
     15 (==) Using config file: "/etc/X11/xorg.conf"
     16 (II) Module already built-in
     17 (II) Module already built-in
     18 (II) Module already built-in
     19 (II) Module already built-in
     20 (EE) AIGLX error: dlsym for __driCreateNewScreen_20050727 failed (/usr/lib/dri/fglrx_dri.so: undefined symbol: __driCreateNewScreen_20050727)
     21 (EE) AIGLX: reverting to software rendering
     22 The XKEYBOARD keymap compiler (xkbcomp) reports:
     23 > Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
     24 >                   Ignoring extra symbols
     25 Errors from xkbcomp are not fatal to the X server
     26 (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
     27         No such file or directory.
     28 Error opening /dev/input/wacom : No such file or directory
     29 (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
     30         No such file or directory.
     31 Error opening /dev/input/wacom : No such file or directory
     32 (EE) xf86OpenSerial: Cannot open device /dev/input/wacom
     33         No such file or directory.
     34 Error opening /dev/input/wacom : No such file or directory
     35 Could not init font path element /usr/share/fonts/X11/cyrillic, removing from list!
kendy@ferrari:/var/log/gdm$

Dernière modification par calimarno (Le 12/11/2007, à 16:49)

#2 Le 23/10/2007, à 18:21

kraal

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

J'ai exactement le même soucis...

cat .xsession-errors 

(process:8452): Gtk-WARNING **: This process is currently running setuid or setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

    http://www.gtk.org/setuid.html

Refusing to initialize GTK+.

(process:8456): Gtk-WARNING **: This process is currently running setuid or setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

    http://www.gtk.org/setuid.html

Refusing to initialize GTK+.
/etc/gdm/Xsession: Beginning session setup...
/etc/gdm/Xsession: Executing /usr/bin/gnome-session failed, will try to run x-terminal-emulator

Si je lance gnome-session depuis le xterm ça roule.
Si je choisi la session de secours gnome a l'ecran de login, ça roule aussi.
Toutes les autres sessions ouvrent un xterm...

Merci d'avance si vous avez un tuyau pour me dépanner.

Hors ligne

#3 Le 23/10/2007, à 19:55

kendy

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Ah ! j'ai l'impression d'être un peu moins seul !
kraal si tu trouves solution à notre pb ailleurs que sur c eforum, tu peux venir la poster ici stp ?
merci, j'en ferai de même wink

pourrais-tu poster ta config matérielle ? (processeur, carte graphique?..)
vraiment à tout hasard...

#4 Le 24/10/2007, à 10:49

kraal

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

quelques extraits de lshw

    description: Mini Tower Computer
    product: Precision WorkStation 360
    vendor: Dell Computer Corporation
    serial: BVWK51J
    width: 32 bits
    capabilities: smbios-2.3 dmi-2.3
  *-core
       description: Motherboard
       product: 0W2563
       vendor: Dell Computer Corp.
       physical id: 0
       serial: ..CN4811141E00CX.
     *-firmware
          description: BIOS
          vendor: Dell Computer Corporation
          physical id: 0
          version: A06 (05/17/2004)
          size: 64KB
          capacity: 448KB
          capabilities: pci pnp apm upgrade shadowing escd cdboot bootselect edd int13floppytoshiba int5printscreen int9keyboard int14serial int17printer acpi usb agp ls120boot biosbootspecification netboot
     *-cpu
          description: CPU
          product: Intel(R) Pentium(R) 4 CPU 3.20GHz
          vendor: Intel Corp.
          physical id: 400
          bus info: cpu@0
          version: 15.2.5
          slot: Microprocessor
          size: 3200MHz
          capacity: 3600MHz
          width: 32 bits
          clock: 800MHz
          capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe cid xtpr
     *-memory
          description: System Memory
          physical id: 1000
          slot: System board or motherboard
          size: 4GB
        *-bank:0
             description: DIMM SDRAM Synchronous 400 MHz (2.5 ns)
             physical id: 0
             slot: CHANNEL A DIMM 0
             size: 1GB
             width: 64 bits
             clock: 400MHz (2.5ns)
        *-bank:1
             description: DIMM SDRAM Synchronous 400 MHz (2.5 ns)
             physical id: 1
             slot: CHANNEL B DIMM 0
             size: 1GB
             width: 64 bits
             clock: 400MHz (2.5ns)
        *-bank:2
             description: DIMM SDRAM Synchronous 400 MHz (2.5 ns)
             physical id: 2
             slot: CHANNEL A DIMM 1
             size: 1GB
             width: 64 bits
             clock: 400MHz (2.5ns)
        *-bank:3
             description: DIMM SDRAM Synchronous 400 MHz (2.5 ns)
             physical id: 3
             slot: CHANNEL B DIMM 1
             size: 1GB
             width: 64 bits
             clock: 400MHz (2.5ns)
     *-pci
          description: Host bridge
          product: 82875P/E7210 Memory Controller Hub
          vendor: Intel Corporation
          physical id: 100
          bus info: pci@0000:00:00.0
          version: 02
          width: 32 bits
          clock: 33MHz
          configuration: driver=i82875p_edac module=i82875p_edac
        *-pci:0
             description: PCI bridge
             product: 82875P Processor to AGP Controller
             vendor: Intel Corporation
             physical id: 1
             bus info: pci@0000:00:01.0
             version: 02
             width: 32 bits
             clock: 66MHz
             capabilities: pci normal_decode bus_master

           *-display
                description: VGA compatible controller
                product: NV34GL [Quadro FX 500/600 PCI]
                vendor: nVidia Corporation
                physical id: 0
                bus info: pci@0000:01:00.0
                version: a1
                width: 32 bits
                clock: 66MHz
                capabilities: pm agp agp-3.0 vga bus_master cap_list
                configuration: driver=nvidia latency=248 maxlatency=1 mingnt=5 module=nvidia

Je pense que c'est plus un probleme de conf de gnome qu'un probleme hard, puisqu'on arrive à démarrer gnome à la main dans le xterm...

Si je trouve une solution, je la posterai ici ;-)

Hors ligne

#5 Le 24/10/2007, à 12:16

kraal

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Ca y est, ça marche chez moi :-)

dans le repertoire /etc/X11/xsessions.d j'avais :

ll /etc/X11/Xsession.d/
total 16
drwxr-xr-x 2 root root 4096 2007-10-23 17:06 .
drwxr-xr-x 4 root root 4096 2007-10-23 15:10 ..
-rw-r--r-- 1 root root  361 2007-10-05 10:31 55gnome-session_gnomerc
-rw-r--r-- 1 root root  431 2007-10-15 14:24 80ubuntu-xmodmap

et dans la sauvegarde que j'ai faite avant la mise a jour vers gutsy :

ll /save/etc/X11/Xsession.d/
total 56
drwxr-xr-x  2 root root 4096 2007-10-19 16:07 .
drwxr-xr-x 11 root root 4096 2007-10-23 14:30 ..
-rw-r--r--  1 root root 1878 2007-07-04 16:55 20x11-common_process-args
-rw-r--r--  1 root root 1871 2006-03-20 13:29 20xorg-common_process-args
-rw-r--r--  1 root root  899 2007-07-04 16:55 30x11-common_xresources
-rw-r--r--  1 root root  985 2006-03-20 13:29 30xorg-common_xresources
-rw-r--r--  1 root root 1561 2006-06-12 05:40 50x11-common_determine-startup
-rw-r--r--  1 root root 1565 2006-03-20 13:29 50xorg-common_determine-startup
-rw-r--r--  1 root root  361 2007-10-05 10:31 55gnome-session_gnomerc
-rw-r--r--  1 root root   80 2007-10-10 21:35 60xdg-user-dirs-update
-rw-r--r--  1 root root  612 2006-06-12 05:40 90x11-common_ssh-agent
-rw-r--r--  1 root root  616 2006-03-20 13:29 90xorg-common_ssh-agent
-rw-r--r--  1 root root  166 2006-06-12 05:40 99x11-common_start
-rw-r--r--  1 root root  170 2006-03-20 13:29 99xorg-common_start

j'ai essayé de remplacer le X11 existant par le X11 de sauvegarde

mv /etc/X11 /etc/X11.old
cp -r /save/etc/X11 /etc

dans la nouvelle install il y a un lien X vers /usr/bin/Xorg qui n'existe pas dans l'ancienne

ln -s /usr/bin/Xorg /etc/X11/X

reboot et bingo ça marche !!!

bon, le fichier $HOME/.xsession-error est plein de messages 'A handler is already registered for the path starting with path[0] = "org"'

je vais essayer de nettoyer tout ça, mais bon, gnome démarre normalement (ou a peu prés)

J'espere que ça pourra t'aider...

Hors ligne

#6 Le 24/10/2007, à 14:33

kendyjm

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

hello ! je vois qu'il y a enfin de bonnes nouvelles sur ce thread !
et qu'tu as été bien + prudent et avisé que moi en sauvegardant qq éléments de config avant l'upgrade !!!

...dis, yaurait moyen que tu me send ces qq fichiers stp?
...car moi je ne les ai pas sauvegardés sad
kendyjm 'at' gmail 'dot' com
c mon email..si ça ne te gêne pas, j'pense pas qu'il y ait des données persos dedans (?).
merci !
en ts cas grâce à toi je sais exactement d'où vient le pb...c'est déjà bcp.

Kendy

#7 Le 24/10/2007, à 23:53

kendy

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

...eh bien après avoir testé tes fichiers ça ne marche toujours pas chez moi sad
j'ai toujours le même ptit terminal au démarrage...
..merci kan même!

si qq1 a une idée ..please.. je suis preneur !

Kendy

#8 Le 26/10/2007, à 12:43

kendy

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

up !  please sad

#9 Le 29/10/2007, à 18:12

chelmix

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Perso j'ai la même erreur, alors même que j'ai une install de gutsy d'origine (pas une upgrade).

Sur des forums, on trouve la description de ce probleme, mais pas encore de sulution apparemment.

En session de secours, tout fonctionne nickel (mis a part la clock aplet mais ce doit etre une coincidence)..

#10 Le 29/10/2007, à 20:44

harobed

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Même problème pour moi sad


Blog : stephane-klein.info | Site web professionnel : is-webdesign (développement web, python, php…)

Hors ligne

#11 Le 02/11/2007, à 18:04

chelmix

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Up !!!!!

#12 Le 09/11/2007, à 08:36

freynjord

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

J'ai aussi ce problème, et un de plus !
Personne ne peut nous aider ?

Hors ligne

#13 Le 09/11/2007, à 12:55

kendyjm

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

...salut....bienvenu au club ! sad
ça fait 3 semaines que j'ai ce pb....j'te dirais de t'armer de patience....
tout marche bien à part ça....

au fait tu as eu l'pb suite à upgrade vers gutsy ou une install tte fraîche ?

bientôt j'aurai droit à :
- "ah t pas sur windows ??? t'as koi ?? j'peux voir à koi ça ressemble ?"
(qq secondes de boot plus tard)
- "ptain c koi c'truc ? c du DOS ?? t'as k'une ligne de commande ??"
- "hmm, non g un ptit soucis, m'faut taper gnome-session& pour avoir mon bureau...:/"
- "ah ouais, la loose kan même, windows c cool hein tongue big_smile "

..............

#14 Le 11/11/2007, à 20:41

freynjord

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Suite à  un upgrade ! Feisty marchait nickel. J'ai presque envie de revenir à  Feisty et faire la manip citée plus haut pour migrezr à  nouveau vers gutsy. Tu crois que c'est possible ?

En plus, je ne vois rien sur les autres forum.

Merci

Hors ligne

#15 Le 11/11/2007, à 21:47

freynjord

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

J'ai une légère différence , mon message d'erreur :

/etc/gdm/Xsession: Beginning session setup...
/etc/gdm/Xsession: line 73: ls: command not found
/etc/gdm/Xsession: Executing /usr/bin/gnome-session failed, will try to run x-te
rminal-emulator

Est-ce que cela vous parle  plus ?

Hors ligne

#16 Le 11/11/2007, à 22:01

freynjord

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

Bon j'ai résolu mon problème en supprimant purement et simplement mon .profile.

Après plus aucun soucis, cela devait être lié à  une variable.

Bon courage

Hors ligne

#17 Le 12/11/2007, à 11:37

kendy

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

hello ! cool si tu as pu t'en sortir ! c ptêtre une lueur d'espoir...
tu peux me dire o๠se trouve ce .profile
et qu'implique sa suppression ?
il s'agit de supprimer le compte, puis d'en créer un autre ?

merci !

#18 Le 12/11/2007, à 14:59

kendy

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

ohhhh trooooooop fort !!!!
C BON CA MARCHE NICKEL !!
j'ai juste supprimé mon .profile comme tu disais !!
j'y crois pas ! c k'du bonheur lol GRAND merci !!!

à  tout hasard voici c'ke contenait mon .profile,
j'vois pas trop c'ki causait l'pb...si qq1 est plus éclairé...




# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f ~/.bashrc ]; then
	. ~/.bashrc
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
    PATH=~/bin:"${PATH}"
fi

#19 Le 09/05/2008, à 15:08

Jean-mich-mich

Re : [gutsy] Executing /usr/bin/gnome-session failed (Résolu)

hello!!

et bien moi je viens de tomber sur ce post et il me semble que mon problème et pratiquement similaire! je viens de récupérer une machine qui n'avais pas rebooté depuis un moment et la
paff pastek

voici mon message d'erreur:

 more .xsession-errors

(process:9529): Gtk-WARNING **: This process is currently running setuid or setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

    http://www.gtk.org/setuid.html

Refusing to initialize GTK+.

(process:9533): Gtk-WARNING **: This process is currently running setuid or setgid.
This is not a supported use of GTK+. You must create a helper
program instead. For further details, see:

    http://www.gtk.org/setuid.html

Refusing to initialize GTK+.
/etc/gdm/Xsession: Beginning session setup...
Xsession: run_parts() called, but "/etc/X11/Xsession.d" does not exist or is
not a directory. Please report the installed version of the "xfree86-common"
package and the complete text of this error message to
<debian-x@lists.debian.org>.

(zenity:9544): Gtk-WARNING **: Failed to set text from markup due to error parsing markup: Erreur à la ligne 1 caractère 227 : Caractère bizarre « @ », un caractère « > » ou  « 
/ » est requis pour terminer la balise de début de l'élément « debian-x », ou optionnellement un attribut ; peut-être que vous utilisez un caractère non valide dans un nom d'att
ribut
/etc/gdm/Xsession: Executing default failed, will try to run x-terminal-emulator

très louche le dossier /etc/X11/Xsession.d n'existe pas

Dernière modification par Jean-mich-mich (Le 09/05/2008, à 16:39)

Hors ligne