Report this

What is the reason for this report?

How to change home folder and all its subfolder

Posted on September 17, 2014

I have changed my username from “user” to “newuser”, but when I checked, with :

ls -la

I got that some folder is used in my old name, like this.

drwxr-xr-x 3 root      root  4096 Sep 16 01:35 ..
-rw------- 1 newuser   user 2643 Sep 17 11:25 .bash_history
-rw-r--r-- 1 newuser   user  220 Sep 16 01:06 .bash_logout

I want to change the “user” to “newuser”

Can I do it ?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi,

you can rename the “user” to “newuser” with

usermod -l user -m -d /home/newuser newuser

-m for move-home, -d for new home directory path

If you want to rename the group “user” to “newuser”, you need this command

groupmod -n newuser user

-n for new-name

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.