|
su root is the default command for su.
That is, if you type su it will assume you mean su root. To su to another user you will have to add the users name, e.g. su username.
If you use su you will still have the same envioroment, for example the $PATH variable, as the user who su'd.
If you use su - you will have the envioroment of the user you su'd to.
|