Questions tagged «xserver»

21
wkhtmltopdf:无法连接到X服务器
我一直在使用wkthmltopdf在Linux Web服务器上即时将html转换为pdf文档。该程序最初需要X11或类似的X服务器才能正确运行,但是通过开发人员的多次请求,要使其在不具有GUI的服务器上运行,我可以确定它在静态版本中运行虚拟X服务器。我一直在使用程序的静态(独立)版本,效果很好!我将可执行文件放在一个文件夹中,然后运行: ./wkhtmltopdf file1.html file2.pdf 但是,我想在系统范围内安装此程序。我使用了apt-get install wkhtmltopdf(昨天才安装),并且由于我在64位系统上运行,因此我也需要apt-get install ia32-libs。安装后,我可以找到这样的版本: wkhtmltopdf --version 输出: Name: wkhtmltopdf 0.9.9 License: Copyright (C) 2008,2009 Wkhtmltopdf Authors. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent …

29
Java无法使用'localhost:10.0'作为DISPLAY变量的值连接到X11窗口服务器
我有一个脚本使用Java连接到本地主机的端口10.0中显示X11 但我总是得到这个错误 java.lang.InternalError: Can't connect to X11 window server using 'localhost:10.0' as the value of the DISPLAY variable. at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method) at sun.awt.X11GraphicsEnvironment.access$200(X11GraphicsEnvironment.java:62) at sun.awt.X11GraphicsEnvironment$1.run(X11GraphicsEnvironment.java:178) at java.security.AccessController.doPrivileged(Native Method) at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:142) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:186) at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:82) at sun.awt.X11.XToolkit.<clinit>(XToolkit.java:112) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:186) at java.awt.Toolkit$2.run(Toolkit.java:849) at java.security.AccessController.doPrivileged(Native Method) at …
93 java  linux  x11  xserver 

12
如何检查X服务器是否正在运行?
有没有办法找出当前会话用户是否正在运行Xserver(在Linux下)? 我从以下事情开始: ps -e | grep X 但这并不总是有效 我尝试的另一件事是检查$DISPLAY变量 还有其他方法可以检查吗? 编辑:有人建议使用$ DISPLAY变量,但是如果用户摆弄这个变量怎么办?如果他尝试执行某项操作并更改此变量,然后在我检查它时,它将不再反映系统的准确状态该怎么办?是否有特定方法可以始终返回正确答案? 我发现可以通过编程方式完成: #include <X11/Xlib.h> int main() { exit(XOpenDisplay(NULL) ? 0 : 1); } $ gcc -o xprobe xprobe.c -L/usr/X11R6/lib -lX11 但是我正在寻找一种脚本方式。
74 linux  x11  xserver 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.