change ownership of all files from root to user

i'm new to Ubuntu and was wondering if there is a way to remove the ownership of all files and scripts from root to user even if i have to re-install Ubuntu? i do know about the command 'chown -v username foldername', although it doesn't work on all files.

2

3 Answers

Just go to the directory you want to change:

cd /opt/lampp/htdocs 

and change the permission using the chown command:

sudo chown userName -R codeigniter 

Where userName is the username and codeigniter is the folder's name.

3

When you do an install you have several directories. Everything in /home/user/ can be changed to your user. If you chown the others your system will break. And when you chown you need to make sure you chown to the user and NOT just some name you choose. It will be the same name as the folder under /home/. Do not change either permissions or ownership of anything but files under /home/user/.

sudo chown -v -R user:user /home/user/ 

The command will change the user and the group to the same at the same time.

1

The below is for individual file:

sudo chown user:user filename 

For an entire directory it will be:

sudo chown user:user dirName 

For recursive (i.e files and folders inside a folder):

sudo chown -R user:user dirName 

Note: user is, if you do pwd under any Documents, you will see the path: /home/jhon/Documents. Here user is jhon.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like