http://www.backtrack-linux.org/forum...cktrack-3.html
Read the above first for specifics, then below is what I did that worked for me...
Most of the commands below you'll run as the root account. You'll then switch to your new user account mid way through.
Copy various configuration files to the /etc/skel directory
Code:
cp /root/.<folder name> /etc/skel
The following folders are what I copiedCode:
.bash_logout
.bashrc
.config
.gconf
.gconfd
.gem
.kde
.mozilla
.msf4
.profile
.pulse
.subversion
.wine
.xine
Create your new user:Code:
adduser <username>
Add user to groups: Code:
usermod --groups admin,disk,cdrom,audio <username>
Login as the new user to consoleAllow user to start their x session (if you fail to do the command below and attempt to start X as your new user, you will get a black screen):
Code:
sudo chown <user>:<user> /home/<username>/Desktop/.Xauthority
allow user to make KDE changes: Code:
sudo chown <user>:<user> /home/<username>/.kde/share/config/kmixrc
sudo chown <user>:<user> /home/<username>/.kde/share/config/kmixctrlrc
At this point you should be able to startx and get the normal BT5 environment. Hope this helps anyone else who's in a similar situation.