Help with gnome2-lite + GDM.

I installed gnome2-lite and GDM, and I added:

Code:
gdm_enable="YES"
gnome_enable="YES"
to /etc/rc.conf. When GDM starts up, there are no user options and nothing that I can do to login. The window in the middle has nothing but a line through it from left to right and above that a monitor icon and basic information about the system. I can't remember the first thing it says, but after that it just displays "FreeBSD" and the release number, and that's it. What else should I install or do?
 
I've made an .xinitrc file and I'm using $ startx It's been working, but I was going to just start GDM automatically at startup and log in from there, but it's like it's missing something. Like I said, no names are there to choose from to log in as. I'm only using my one user account and root, so there should be only one, but not even that's there. I don't know how to get it to recognize the choices or how to add a user to the list.
 
The procfs that gnome needs is not the same procfs that the Linux emulation stuff needs, for the FreeBSD procfs you use this in /etc/fstab:

Code:
proc    /proc   procfs  rw      0       0

And for Linux compatibility:

Code:
linproc        /usr/compat/linux/proc  linprocfs       rw      0       0
 
Back
Top