Bootstrap

linux 终端启动idea时报错:No protocol specified(启动图形化程序界面报错)

记录今天在Linux中启动idea时报如下错误:

No protocol specified

Start Failed: Failed to initialize graphics environment

java.awt.AWTError: Can't connect to X11 window server using ':0' as the value of the DISPLAY variable.
access control disabled, clients can connect from any host

因为Xserver默认情况下不允许别的用户的图形程序的图形显示在当前屏幕上. 如果需要别的用户的图形显示在当前屏幕上, 则应以当前登陆的用户, 也就是切换身份前的用户(root)执行如下命令

xhost +

并且提示“access control disabled, clients can connect from any host”才正确。
然后切换到所需要的用户下再次执行命令就可以成功打开idea了。
成功后结果展示

;