1

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?

Ian Dunn
  • 194
  • 13

1 Answers1

4

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?

liamf
  • 392
  • 4
  • 10