I'm getting this error when starting anything that uses the Pango library. I'm using Kubuntu 9.10. I've done 'sudo apt-get --reinstall install' on libgtk* libcairo* libpango* and fontconfig, with no luck.

Could someone point me in the right direction? Thanks.

link|improve this question
feedback

4 Answers

I did a lot of searching on this and never found a decent answer. My issue involved running virt-manager (an xwindows based utility) on a remote server. I have all the fonts on my xwindows box but not on the remote host.

the i ran 'yum install xorg-x11-font*' on the remote host everything worked fine.

link|improve this answer
Thanks - I was setting up a minimal machine without a full desktop, but with a couple of X-apps. This was exactly what I needed. – Danny Staple May 10 '11 at 10:30
Thanks! On CentOS I had to install:xorg-x11-fonts-Type1. Also installed xorg-x11-fonts-100dpi and xorg-x11-fonts-75dpi -- not sure which I needed, if either. – originalbryan Feb 9 at 17:14
feedback

I ran into this on Amazon Linux, with the minimal set of X packages necessary to run vncserver, and had to install dejavu-sans-fonts and dejavu-serif-fonts.

link|improve this answer
feedback

Your fonts are probably installed in /usr/X11R6/share/fonts but since pango-1.24 the fonts should be in /usr/share/fonts. The solution is to link the X11 fonts:

ln -s /usr/X11R6/share/fonts /usr/share

This should fix the problem.

link|improve this answer
feedback

Make sure that font you are using with pango is installed on the machine.

Check for installed fonts in /usr/share/fonts directory.

To install new fonts try the steps mentioned in this document:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.