The first part sounds to me like you have your system configured to boot into a GUI environment. You had to manually set this in rc.conf during install or sometime after. Most likely you didn't set a display manager, so it's using the default XFree86 XDM for your login. I would recommend logging in as root, and editing rc.conf, and the line that says "display manager" set that to GDM(if you have gnome installed). In my opinion, if your going to GUI login, that's the best manager. Also, at the bottom of rc.conf it will allow you to set your default window manager, so be sure to set that as well if you like.
On to the permissions, log into your console as root. Then:
# cd /home
# chown username -r steve/
I can't remember if it's -r or -R, but if one doesn't work switch the case. -r tells the command to perform recursively, in other words all the subdirectories and files will change ownership to the user you provide in the command. After you do this you should have no problem at all accessing the files as steve.
|