Solution:
If you're the only one using this machine, the easiest fix is to run this command as root:
visudo
and then add this line to the sudoers file:
Defaults env_keep=HOME
If this is a shared computer and you aren't at liberty to change the sudoers file, you can add this code to .bashrc in your home directory. be sure to log out and back in for it to take effect:
# hack to preserve home when using sudo -s on rhel 6if [[ `cat /etc/*release | grep "release 6"` ]]; then sudo() { if...