Hi all! I experienced the same issue with last xorg upgrade.
My problem was logged in ~/..xsession-errors and was "could not find file: /etc/X11/Xsession" Looiking at /etc/X11/ I only found /etc/X11/Xsession.d with several file inside. The cuprit was /etc/kde3/kdm/Xsession: # invoke global X session script . /etc/X11/Xsession So my fix is: # invoke global X session script find /etc/X11/Xsession.d | while read i; do . $i done I'm attaching a patch, I hope it'll help you... Romain -- There is a land far, far away Where there's no night, there's only day Look into the book of life and you will see That there's a land far, far away
--- ./etc/kde3/kdm/Xsession 2006-04-23 07:12:38.000000000 +0200 +++ /etc/kde3/kdm/Xsession 2006-05-06 13:40:19.000000000 +0200 @@ -43,4 +43,6 @@ ;; esac # invoke global X session script -. /etc/X11/Xsession +find /etc/X11/Xsession.d | while read i; do + . $i +done