Get root access for copying files to /usr/share/...?

223,836

Solution 1

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 the root 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):

  1. 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.

  2. A much more direct method is just loading up a terminal and writing:

    sudo cp -R /path/to/files/you/want/copied/ /copy/to/this/path/
    

    (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 run sudo -i or sudo su and you'll get a root terminal. But again, be careful what you do.

Solution 2

You need root access. You can launch nautilus with root access with gksu nautilus or can issue commands with sudo 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.

Solution 3

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.

Solution 4

Right click anywhere on a blank desktop. Click create launcher.

Type = application
Name = whatever you want it to be
Command = /usr/bin/gksu nautilus
Comments = whatever you want it to be

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.

Solution 5

There is a simple way to do it :

press Alt+F2 to open the 'Run Application' box
type 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:

Share:
223,836

Related videos on Youtube

Vinay
Author by

Vinay

Python | Azure | Linux | Cloud Computing | Machine Learning

Updated on September 17, 2022

Comments

  • Vinay
    Vinay over 1 year

    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?

  • Vinay
    Vinay over 13 years
    @^ Thanks for the reply, i wouldn't do it either hereafter. :)
  • Nathan Osman
    Nathan Osman over 13 years
    ...or sudo gnome-terminal.
  • Vinay
    Vinay over 13 years
    Even gksu nautilus works.
  • aneeshep
    aneeshep over 13 years
    @George: Running graphical application with sudo is not a good habit. Just go through this article: psychocats.net/ubuntu/graphicalsudo
  • aneeshep
    aneeshep over 13 years
    @Vinaychalluru: yea. of course
  • Oli
    Oli over 13 years
    gnome-terminal -e "sudo -i" seems a more reliable method for a root terminal. The graphical terminal itself doesn't need to run as root and I'm sure the user would prefer their preferences applied.
  • Vinay
    Vinay over 13 years
    I had Ubuntu tweak installed. But, didn't know ur tip.
  • posfan12
    posfan12 over 9 years
    I am using 14.04 and Alt+F2 no longer seems to work.