Ubuntu – Changing the Home folder’s owner

11.04home-directorypermissions

I recently updated my ubuntu to 11.04 and have run into an issue. I decided to do a fresh install instead of an upgrade and made my username different from my last. Now everything has my past usernames permissions.

How can I transition my home folder into my new installation/username.

Any help would be greatly appreciated.

Best Answer

Well as far home folder goes

sudo chown -R $USER:$USER /home/$USER

will do the trick I think.

Related Question