我有一个由 digitalocean 提供的带有 LEMP 的 vps,当我尝试将任何 pdf 文件转换为 doc 文件时,我总是收到此错误:
Unable to init server: Could not connect: Connection refused
** (abiword:2048): WARNING **: 17:08:51.861: clutter failed 0, get a life.
Unable to init server: Could not connect: Connection refused
No DISPLAY: this may not be what you want.
我使用了这个命令:
abiword --to=doc file.pdf
即使我abiword
单独输入,我也会遇到同样的错误
当然,我的 vps 上没有 GUI,所以也许这是个问题?
Abiword 似乎需要一个 X 服务器来转换东西,即使没有导致任何明显的窗口出现。
您可以尝试设置一个虚拟 X 服务器,或者从带有 GUI 的客户端进行 SSH 连接。
在 Linux 上你可以尝试
ssh -X
,或者在 Windows 上,Xming/PuTTY 在类似的情况下对我有用,只要你启用 X11 转发(在 Connection -> SSH -> X11 中)。