I've got a CentOS 5.6 VPS and both root and my normal user account have identical copies of a .bashrc file in their home directories. The file contains a few basic aliases, etc.

  • If I login to root, root's copy gets sourced.
  • If I login to myuser, myuser's copy gets sourced
  • If I su to root after logging into myuser, then all the aliases, etc inside myuser's copy get removed, and root's copy doesn't get sourced. If I then manually source root's copy, the command completes without any errors, but none of the aliases's etc get applied.

I've searched Google and Server Fault, but haven't found any solutions. Does anyone know how to fix that?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You need to use

$su -

and not just $su, to make a login shell (and cause it to source the .bashrc)

Did you do that?

link|improve this answer
That worked, thanks :) – Ian Dunn Jun 27 '11 at 22:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.