I am trying to copy a folder into the user/share/themes
folder on Ubuntu 14.04, and it's telling me I cannot do this because I am not "owner". So I right-clicked the usr/share/themes
folder > Properties
> Permissions
tab and tried to change the permissions but they're all greyed-out/disabled.
So then I opened up Terminal, entered groupmod TAB TAB TAB
> sudo adduser jase root
to try and get higher permissions or something - and it worked. I verified that I added myself as root by id jase
. But that still didn't fix the problem. I still can't copy folders or files to usr/share/themes
folder.
How can I do this? How do I become "owner"?
sudo chown -R jase /usr/share/themes
into terminal. I remember doing that last year. It's working just fine now. Thanks for your help :) – jay_t55 Jul 09 '14 at 22:41cp -R directory destination
. The error messages in Linux are (usually) helpful, if you do not understand them, post the command and error message. – Panther Jul 09 '14 at 22:52