xdotool – 分段错误(核心转储)

xdotool – 分段错误(核心转储)

xdotool在 Ubuntu 上安装了。但是segmentation fault (core dumped)当我输入命令时它说xdotool getmouselocation。如何解决?

答案1

您可能没有使用真实显示。要更正此问题,请执行以下操作:

export DISPLAY=:0  
xdotool getmouselocation

如果不起作用,这关联可能会有用。

答案2

我必须使用以下命令安装 X Window System:

# apt-get install xserver-xorg 
# apt-get install x-window-system-core 
# dpkg-reconfigure xserver-xorg 
# apt-get install gnome-core 
# apt-get install gdm xscreensaver 
# apt-get install ttf-arphic*
# startx

现在输入命令export DISPLAY=:0.xdotool就可以工作了。

相关内容