ps2pdf 사용 중 오류

ps2pdf 사용 중 오류

저는 Virtual Box에서 Linux를 사용했는데 지금은 Ubuntu 16.04 컴퓨터를 사용하고 있습니다. pdf로 변환해야 하는 일부 ps 파일이 있습니다. ps2pdf file.ps file.pdf이전 컴퓨터에서 명령을 실행했지만 지금은 작동하지 않습니다. 다음 오류가 발생합니다.

/usr/bin/gs: symbol lookup error: /usr/lib/libgs.so.9: undefined symbol: FT_Property_Set

사용하려는 시도 convert file.ps file.pdf도 작동하지 않고 오류가 발생합니다.

convert.im6: not authorized `sc1.ps' @ error/constitute.c/ReadImage/454.
convert.im6: no images defined `sc.pdf' @ error/convert.c/ConvertImageCommand/3044.

답변1

마지막으로 나는 사본의 단계를 따랐습니다.libgs에게 다른 자유 유형 구현을 사용하도록 어떻게 알릴 수 있나요?

그런데 원본 파일 libfreetype.so.6을 대체할 libfreetype.so.6.14.0 파일이 없어서 그냥 삭제(이름 변경)했더니 작동이 되더군요. 왜 작동하는지 잘 모르겠지만 작동합니다. 어쨌든 모두들 고마워요!

답변2

Paula의 답변을 반영하여 libfreetype.so.6을 삭제하거나 편집하세요. 에 언급된 이유https://stackoverflow.com/questions/57396756/gnuplot-error-undefine-symbol-ft-property-set. 우분투에서 rstudio를 열려고 할 때 비슷한 오류가 발생했습니다.

rstudio: 기호 조회 오류: /usr/lib/rstudio/plugins/platforms/../../lib/libQt5XcbQpa.so.5: 정의되지 않은 기호: FT_Property_Set

다음 코드는 나에게 효과적입니다.

cd /usr/local/lib
sudo mv libfreetype.so.6 libfreetype.so.abc

관련 정보