31

More specifically the

/etc/apt/

folder. I need to delete some files and replace

/etc/apt/sources.list

with a newer version.

7 Answers7

44

To open the folder as root in the grapical file manager, run the following command:

gksu nautilus /etc/apt/


If you wish to do your operations from the command line, the following command enters the intended directory and makes you root. However, you would be better off using the first method above.

cd /etc/apt; sudo -i
Jorge Castro
  • 73,717
SirCharlo
  • 40,096
17

Ubuntu 16.04 and above

sudo apt-get install nautilus-admin

Then

nautilus -q

Open Nautilus and you'll see an option Open as Administrator option in the context menu of every directory.

David Foerster
  • 36,890
  • 56
  • 97
  • 151
Supline
  • 173
  • 1
  • 5
12

To install Open-as-Administrator in Ubuntu open Terminal (Press Ctrl+Alt+T) and copy the following commands in the terminal:

sudo add-apt-repository ppa:noobslab/apps
sudo apt-get update
sudo apt-get install open-as-administrator

After installation type this command to restart Nautilus:

nautilus -q

Reboot

enter image description here

Ubuntu 16.04

sudo apt-get install -y nautilus-admin

Then

nautilus -q
David Foerster
  • 36,890
  • 56
  • 97
  • 151
nux
  • 39,152
11

Nah ! do a simple thing first. Create a custom file manager. Its easy.

Here how you can do it:

First open gedit and paste all these:

[Desktop Entry]
Name=Nautilus
Comment=Browse the filesystem with administrator rights
Exec=gksudo nautilus
Icon=file-manager
Terminal=false
Type=Application
Categories=Application;System;

Now save the file as Nautilus.desktop on your desktop.

(desktop is the file extension).

Now Open:

   /home/your user name/.local/share/applications

and cut/paste Nautilus.desktop file into there.

Now open dash and search for "Nautilus". It will open up the default file manager with root permission. Now you can navigate to any directory and delete anything you want.

4

Just use

gksudo nautilus --or -- gksu nautilus

or any other file explorer of your choice.

See Also What is the difference between “gksudo nautilus” and “sudo nautilus”?

3

In a Terminal you can use:

sudo -e /etc/apt/sources.list

Note: If you prefer to use Graphical Software you should use gksudo in Gnome:

gksudo gedit /etc/apt/sources.list

or kdesudo in KDE:

kdesudo kate /etc/apt/sources.list

Enter your user password (not root) and you will edit file as root

muru
  • 207,228
swift
  • 3,291
1

You can also add admin:// to the beginning of the needed location, like this:

Example Screenshot

karel
  • 122,292
  • 133
  • 301
  • 332
Airat K
  • 11
  • 2