I recently wanted to add a skin to Audacious, but when I went to add the skins files to the skins folder I was denied the action. Was greeted with "You are not the owner. You can not modify this folder"
I thought root had these privileges? Wasn't I automatically made the admin of my laptop when I installed Ubuntu? I am logged in to the admin account, not as a guest.
sudo
. See e.g. https://askubuntu.com/questions/270006/why-should-users-never-use-normal-sudo-to-start-graphical-applications . There is a Nautilus extension package callednautilus-admin
though which adds a context menu option for opening a folder or editing a file as root easily and rather safely. It can be installed e.g. usingsudo apt install nautilus-admin
. – Byte Commander May 18 '17 at 18:01meshica7@meshica7-MacBookPro:~$ sudo -i nautilus /home/$USER [sudo] password for meshica7:
(nautilus:6317): GLib-GIO-CRITICAL **: g_dbus_interface_skeleton_unexport: assertion 'interface_->priv->connections != NULL' failed
(nautilus:6317): GLib-GIO-CRITICAL **: g_dbus_interface_skeleton_unexport: assertion 'interface_->priv->connections != NULL' failed Failed to register: Timeout was reached
– Juan Leon May 18 '17 at 23:32sudo apt-get install nautilus-admin
, close all the available nautilus windows and then restart nautilus. It should work. – RecursiveCursive May 19 '17 at 04:43