When I do su - to get to root, my current directory is set to root's home. Is there anyway to keep the current directory that I was in, much like sudo -s. Or is the answer to use sudo?
- 33,461
8 Answers
I agree that sudo is almost always a better answer but to answer the other part of the question...
The '-' in 'su -' indicates that you want to emulate a superuser login, rather than just run with superuser priviledges.
If you use plain 'su' rather than 'su -' you will stay in the same directory; however you will also be running in the same environment so may need to modify your path to access some admin commands.
- 2,597
It's always better to use sudo, if possible, because then you don't need to know (or give someone) root's password. Set the root password to something long and horrible and then lock it in a safe.
If you want to deny someone access later, you just remove their access to sudo, rather than having to teach everyone else a new root password.
However - you don't need to use the '-' parameter if you don't want to. You will get a shell as root, it will just not be a login shell (so it will not run root's .profile.)
- 8,026
If you use su without the -, it
should keep you in your current
directory. -, -l or --login
tell su to:
Provide an environment similar to what the user would expect had the user logged in directly.
Or just use sudo, it's got a lot of other advantages. Or ssh keys.
- 14,844
If you really want to use su, there is a way to stay in the same directory.
su - <user> -c "cd `pwd`; bash"
What's going on here:
su - <user>= login as-cwhich means "run a command in the new 's shell-c "cd `pwd`"the command we give is to switch to the current direcotory (pwd) - but because we use the backticks, thepwdcommand is evaluated before we run thesucommand so that we actually switch to the directory we're in NOW as the old user. The only problem here is that the new shell exits right after running the command, so then we add:-c "cd `pwd`; bash"which means "runbash(new shell) after running thecdcommand and the bash shell doesn't exit until we log out of it.
- 81
You should definitely use sudo.
su -m
-m (-p): do not reset environment variables (generally not recommended)
That will keep you in the folder when you change to root.
- 5,019
Use sudo :). Seriously, you don't need su. 'sudo' is better as you only use it for privileged commands and can help avoid mistakes. You also get accountability.
- 7,548
If you use "su" it does an interactive shell. This is the same as "sudo -s". "su -" creates a login shell, which will override the environment. "sudo -i" is the equivilent with sudo. If you are trying to get an interactive shell, you should always use the sudo -i (or su -) form, or it's possible to end up with weird file permissions in a user's home directory.
- 23,963
you must modify the source of su to have this job done. there is a chdir call in a procedure of initialize envoironment varibles. comment out those statesments included that call. and now, you can do "su -" but keeps the current directory.