You are not logged in.
I installed arch linux lats night. Now i don't understand why I can't run GUI applications like gedit,.etc from a terminal.
[vaibhav@linux ~]$ sudo gedit
[sudo] password for vaibhav:
No protocol specified
Unable to init server: Could not connect: Connection refused
(gedit:850): Gtk-WARNING **: cannot open display: :0
but when i use this command after every boot/reboot
[vaibhav@linux ~]$ xhost +local:
non-network local connections being added to access control list
I am able to run GUI application. How to fix this permanently?
Last edited by vaibhavsingh97 (2017-01-03 08:56:10)
Offline
Now i don't understand why I can't run GUI applications like gedit,.etc from a terminal.
It is perfectly possible to run GUI applications from the terminal - but you are running them with `sudo`, which you should not.
It does not work because by default your X session is only accessible to your own user - this is a security mechanism to prevent other users from doing malicious things in your X session. Disabling that mechanism the way you did with `xhost` is therefore not recommended.
As stated in the above link, if you want to run the application with elevated privileges, there is gksu/gksudo for that job.
--edit--
+1 for seth's suggestion below.
Last edited by ayekat (2017-01-03 08:41:24)
Offline
That aside, look into sudoedit for this particular case - running GUI applications as root is never a good idea. (They contain too much code, have too many dependencies and are in general far more bug and exploit prone)
Offline
vaibhavsingh97 wrote:Now i don't understand why I can't run GUI applications like gedit,.etc from a terminal.
It is perfectly possible to run GUI applications from the terminal - but you are running them with `sudo`, which you should not.
It does not work because by default your X session is only accessible to your own user - this is a security mechanism to prevent other users from doing malicious things in your X session. Disabling that mechanism the way you did with `xhost` is therefore not recommended.As stated in the above link, if you want to run the application with elevated privileges, there is gksu/gksudo for that job.
--edit--
+1 for seth's suggestion below.
[vaibhav@linux ~]$ gksu bleachbit
Could not open X display
[vaibhav@linux ~]$ gksudo bleachbit
Could not open X display
what to do know?
Offline
For editors use sudoedit instad of running the editor as root, (or use thriks like :w !sudo tee % in vim)
Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest
Offline
I think OP is trying to open GUI applications from server (without x server running)
Arch is home!
https://github.com/Docbroke
Offline
I think OP is trying to open GUI applications from server (without x server running)
It does seem so. Or from a TTY or another terminal that does not have access to the X display.
Please post the output of these commands:
pgrep -a X
echo $DISPLAY
echo $TERM
Offline
Docbroke wrote:I think OP is trying to open GUI applications from server (without x server running)
It does seem so. Or from a TTY or another terminal that does not have access to the X display.
Please post the output of these commands:
pgrep -a X echo $DISPLAY echo $TERM
[vaibhav@linux ~]$ pgrep -a X
410 /usr/bin/Xwayland :1024 -rootless -noreset -listen 4 -listen 5 -displayfd 6
581 /usr/bin/Xwayland :0 -rootless -noreset -listen 4 -listen 5 -displayfd 6
[vaibhav@linux ~]$ echo $DISPLAY
:0
[vaibhav@linux ~]$ echo $TERM
xterm-256color
[vaibhav@linux ~]$
Offline
/usr/bin/Xwayland
gksu etc. does currently not work on wayland, use gnome on xorg, but
a) avoid running GUI processes as root as much as you can anyway
b) DO NOT USE BLEACHBIT AT ALL - it randomly breaks things because the authors have seriously no deeper knowledge of what they're doing. At very best, it will make your system *slower*.
https://blog.martin-graesslin.com/blog/ … bleachbit/
https://lwn.net/Articles/313679/
Offline