gnome-session question

it's been a while since I used X on freebsd. I installed xdm and set it to start at bootup in /etc/ttys. it works but I forgot how to get gnome-session to start when I login via xdm. I put gnome-session in .xinitrc but it just stalls when I try to boot into x. I forgot what file to put gnome-session in.
 
XDM (and GDM, KDM etc) use ~/.xsession instead of ~/.xinitrc. The latter is used by startx.

The simplest solution is to symlink those two:
% ln -s ~/.xinitrc ~/.xsession

And I definitely recommend using GDM instead of XDM if you're going to use Gnome. If you don't some things won't work properly.
 
Back
Top