2

I am trying to install nautilus-gksu in Ubuntu 14.04 LTS by sudo apt-get install nautilus-gksu but I am having the following error.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package nautilus-gksu

I also tried How can I install nautilus-gksu? but It did not work. Is there a way to install it.

raz
  • 1,834
  • 6
  • 26
  • 45

2 Answers2

5

gksu is now deprecated.

I believe the proper way to open nautilus as root would be to use sudo -i instead.

Here's an example:

sudo -i nautilus &
David Foerster
  • 35,754
  • 55
  • 92
  • 145
mchid
  • 42,315
  • 7
  • 94
  • 147
1

nautilus-gksu isn't a package for Ubuntu since 12.04. The binaries gksu and gksudo are in the package gksu.

Therefore install via

sudo apt-get install gksu
A.B.
  • 89,123
  • 21
  • 245
  • 323