To be short, I want to copy a folder to a location /usr/share/screenlets/....
in Ubuntu 10.04 system. I tried by logging in as root from terminal giving su
.
I even changed my user account type to ADMINISTRATOR; Yet, no use. PASTE option in the context menu's list in the folder /usr/share/...
is INACTIVE.
How can I copy those files?
First, however tempted you might ever get, never "log in with root". It's far too easy to break things beyond repair. Anyway, this is disabled by default so you'd have to do a whole lot more to get to that point.
/usr/
is owned by theroot
account so to write files in there you need to write them as root. Two methods (there are undoubtedly more but here are the two main ways for most users):Press Alt+F2 to get a run dialogue and in that type
gksu nautilus
. This will open up a file browser window running as root. Copy your files across but be careful, you can nuke the system like this.A much more direct method is just loading up a terminal and writing:
(the
-R
is just there to recursively copy directories)If you ever want to fire off multiple commands as root without prepending them all with
sudo
you can runsudo -i
orsudo su
and you'll get a root terminal. But again, be careful what you do.You need root access. You can launch nautilus with root access with
gksu nautilus
or can issue commands withsudo
before the command to move or copy. I would not play around with user groups if I were you, as this can mess things up and spoil built in security features.You can also install Ubuntu tweak and then go to manage scripts . There you will find a script called Browse as root . It will ad a new entry to the context menu wich will alow you browse the selected folder as root.
You just right click from nautilus ... browse as root ... enter password and you can do whatever you want.
There is a simple way to do it :
press
Alt+F2
to open the 'Run Application' boxtype
gksudo nautilus
in to the text box and press 'Enter'. This will prompt a password dialog box. Enter your sudo password and it will open nautilus with root privilege. From there you can move/copy files without any permission error.Note: Just make sure that you don't delete/replace any system files.
see a similar post here:
Right click anywhere on a blank desktop. Click create launcher.
Double click the new launcher on your desktop. Note that anything you want to copy and paste must be done in this browser, you cannot simply drag onto your user desktop space, so if you need to open to browsers just double click the new launcher twice. Welcome to drag and drop root.
Remember that you can replace nautilus with whatever your favorite browser is, you might try xfe, so after dl of xfe command would be
/usr/bin/gksu xfe
. If you would like to make an OpenAs that you can manually type any program you want to run as root,Command = /usr/bin/gksu
.