When I run sudo gedit /path/to/some/random/file
I get the following error
** (gedit:6262): WARNING **: Command line `dbus-launch --autolaunch=7f8731869e1c690b8205727e0000000a --binary-syntax --close-stderr' exited with non-zero exit status 1: Autolaunch error: X11 initialization failed.
Cannot open display:
Run 'gedit --help' to see a full list of available command line options.
Using gksudo
doesn't help either which returns
Cannot open display:
Run 'gedit --help' to see a full list of available command line options.
Any help guys. I need to have this capability to open files in Gedit as root.
I found this question with the same error but no solution Unable to launch gedit with sudo
EDIT
I found this post in Ubuntu Forums.
These are the instructions:
- echo $DISPLAY # you'll be needing this value 3 lines below
- sudo -i # or "su -" on older Slackwares
- xauth merge ~alien/.Xauthority # use your own username here instead of "alien"
- export DISPLAY=:0.0 # use the value of DISPLAY you've seen 3 lines before
On coming to command #3, I got this error
xauth: file /root/.Xauthority does not exist
Maybe this new info can shed more light.
Finally have found an answer. From this question Cannot connect to X Server when running app with sudo and especially this question Error when trying to run an app with sudo or gksudo.
I added the line
Defaults env_keep+="DISPLAY"
to the end of thevisudo
file at/etc/sudoers
.Yay, my
sudo gedit
is back!EDIT
Got the same error again for sometime.
Did some more research, especially this answer https://askubuntu.com/a/137584/163331 and realized I had to add more options to the
visudo
file. Instead ofDefaults env_keep+="DISPLAY"
, I used this line:Running any graphical interface applications as root can result in file corruption, especially if the graphical interface application is a text editor. In addition to this
gksu
andgksudo
don't work for starting graphical applications as root in Wayland in Ubuntu 17.10: Why don't gksu/gksudo work with Wayland? and the gksu package has been dropped from the default Ubuntu repositories in Ubuntu 18.04 and later.Nautilus Admin (nautilus-admin) is a simple Python extension for the Nautilus file manager that adds some administrative actions to the right-click menu:
To install Nautilus Admin in all currently supported versions of Ubuntu open the terminal and type:
While there are commands to run graphical applications as root, you are strongly advised to use nano text editor, which normally is run from the terminal, for editing files as root. Nano text editor is included in the default Ubuntu installation.
Nano is very easy to use. The instructions for using nano editor are always found at the bottom of every page. The only two nano keyboard shortcuts that you need to know are for WriteOut and Exit. Press the keyboard combination Ctrl+O and after that press Enter to save the file being edited. Press the keyboard combination Ctrl+X to exit nano.
If you get into the habit of editing files as root the right way, you will reduce the possibility of making mistakes that may be very time consuming to correct.
In Ubuntu 17.10, at least, you can do this:
You'll be prompted to enter your password, and then the file will be opened for editing as root.
For gedit, try this:
I am trying to summarize all info in the other answers on this page:
Wayland:
The only option looks to used
nano
orvi/vim
Xorg:
try this
if it works it probably means you need to add some option to sudo configuration files
Try to add this line at the end
I just had similar problem. I'm using Debian Jessie and to start gedit as root this line was then finally working: