问题
I'm trying to change the home directory to a different folder and my OS is not letting me do that. In Ubuntu I try to edit the useradd file but I can't figure out any way to save my changes that I made. Does anyone know how to do this?
回答1:
As root
usermod -d /path/to/new/directory username
Make sure your have created the new directory first with the mkdir command. Then login as yourself again, the directory is set during login.
回答2:
sudo usermod -d /path/to/new/home -m username
来源:https://stackoverflow.com/questions/28619737/change-home-directory-ubuntu-14-10