Cannot login

I am using FBSD-8 and installed gnome2 using enlightenment. I rebooted and now I cannot use the keyboard to enter my passwd, only the mouse is working.
The boot up screen gives me code like this
Code:
Configuring syscons: keymap blanktime
It proceeded to the graphical login screen or gdm. What is this and what do I do now that I am stuck and do not know how to even get to the console.
Besides that when I clicked on restart I could not same for shutdown on the login screen. A Popup gave failed to restart/stop computer. So, I pushed the pwr button and it shutdown.

On the boot up screen I was told to remove invalid mount options from /etc/fstab
 
Looks like, I did not configure something properly and I do not know how to get to the console instead of the graphical login, gdm. Does the livefs have an option to help me fixit? or the memstick.img? Should I be able to do that if I choose single user mode? Actually I did choose that and I get that the editors are not found, neither ee nor vi. So what do I do?
 
Boot to single user mode and remove the gdm_enable option from /etc/rc.conf.

When booting to single user mode only the root filesystem is mounted. And that's read-only. To fix that (and you should memorize this):

Code:
fsck -y
mount -u /
mount -a -t ufs
swapon -a
 
Back
Top