How to change permission on addon folder
#1
Hi i need to copy plugin i have from usb to the /usr/share/xbmc/addon folder
But i do not have permission
How do i do this
Reply
#2
copy it to a folder you have the permission to. "Home" for example.

or do something like:

Code:
sudo chmod 777 /path/foldername

This will allow anything for anybody to do what any user wants for this specific folder (not for subfolders). If you want for subfolders, too:

Code:
sudo chmod -R 777 /path/foldername

This will change the permissions for any subfolder underlying to the "foldername". But please be carefull, if you don´t know what you are doying. I would recommend to copy the file to a folder, you have the permission to.

Greetings
Reply
#3
Firstly, you shouldn't be copying anything into the /usr/share/xbmc/addons directory. You should be copying it to /home/<yourusername>/.xbmc/addons

Also, changing permissions on directories as David1977 has told you to do is [b]a bad idea[/] particularly for system directories. You can easily copy the file into the directory anyway without changing any permissions with
Code:
sudo cp /path-to-usb/name-of-file /usr/share/xbmc/addons/
Learning Linux the hard way !!
Reply

Logout Mark Read Team Forum Stats Members Help
How to change permission on addon folder0