我需要从PDF
打印AIX 5.3 system
个文件。我试图使用Ghostscript
软件将PDF
转换为postscript文件,但我收到以下消息。
$ gs
AFPL Ghostscript 8.54 (2006-05-17)
Copyright (C) 2005 artofcode LLC, Benicia, CA. All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
Xlib: connection to "local:0.0" refused by server
Xlib: Client is not authorized to connect to Server
AFPL Ghostscript 8.54: Cannot open X display `local:0.0'.
**** Unable to open the initial device, quitting.
任何帮助都会被挪用 谢谢
答案 0 :(得分:0)
尝试使用不到8年的Ghostscript版本.....
基本上,您的命令行使用显示设备(因为您没有要求任何其他内容,这是默认设置),* nix系统上的是X客户端。显然你没有运行X服务器,所以它不起作用。
你真的,真的需要使用更新的东西,即使你的古老版本工作,输出也不会很好。
答案 1 :(得分:0)
gs
尝试打开一个窗口,但是你没有在图形环境中工作,或者它没有正确设置。
我不知道你的ghostscript版本是否足以转换pdf,但为什么不试一试。图形环境不是必需的:
gs -dNOPAUSE -dBATCH -dSAFER -sDEVICE=ps2write -sOutputFile=myfile.ps -f myfile.pdf
更舒适,看看您是否有pdf2ps
可用或是否可以安装。它是使用gs
的shell脚本。只需将其称为pdf2ps myfile.pdf myfile.ps
。