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.9k times
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.