I used to use gksudo gedit /etc/something.conf
to edit system configuration files but this doesn't seem to work any more. Looks like there is no gksudo
in 13.04
. How can I add it back or what am I intended to use instead?
Asked
Active
Viewed 9.6k times
17

Ivan
- 57,065
2 Answers
16
Yes, there is NO gksudo
available for Ubuntu 13.04. It has been removed.
So, you can use 'sudo' instead. Just type: sudo -i gedit /etc/something.conf
. You will be asked for your password.
If you are not comfortable with it, use this sudo apt-get install gksu
to install gksu, and you can use the gksudo command.
10
Thanks to thefourtheye's link I've found the answer and am sharing it here for further reference:
The package name is gksu
so the answer to the actual question is
sudo apt-get install gksu
However, one should probably consider reading PSA: gksu is no longer installed by default and Why is gksu no longer installed by default in 13.04? if interested in this question.
sudo
for GUI programs is fundamentally wrong. Don't actually know why though. – Ivan May 05 '13 at 01:24sudo
can be bad as explained here butsudo -i
runs a shell as root so is always safe. – Warren Hill May 07 '13 at 11:30gksu
package doesn't exist. Can usepkexec
instead – Kim T Mar 04 '22 at 06:21