Page 1 of 1

[SOLVED] Pango problems

PostPosted: Mar 6th, '14, 23:07
by zeke
I am seeing fonts replaced with squares in GTK applications, including MCC.

When I run MCC, I get this error:
Code: Select all
# mcc
Pango-CRITICAL **: No modules found:
No builtin or dynamically loaded modules were found.
PangoFc will not work correctly.
This probably means there was an error in the creation of:
  '/etc/pango/x86_64/pango.modules'
You should create this file by running:
  pango-querymodules > '/etc/pango/x86_64/pango.modules' at /usr/libexec/drakconf line 112.
Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='latin' at /usr/libexec/drakconf line 112.
"/usr/sbin/drakmenustyle" is not executable [Menus] at /usr/libexec/drakconf line 831.
"/usr/sbin/drakbackup" is not executable [Backups] at /usr/libexec/drakconf line 831.
"/usr/sbin/tomoyo-gui" is not executable [Tomoyo Policy] at /usr/libexec/drakconf line 831.
"/usr/sbin/drakguard" is not executable [Parental Controls] at /usr/libexec/drakconf line 831.
Pango-WARNING **: failed to choose a font, expect ugly output. engine-type='PangoRenderFc', script='common' at /usr/libexec/drakconf line 1089.


I found a forum where this problem was solved in adobe by issuing
Code: Select all
# cd /etc/pango/x64_86
# pango-querymodules > pango.modules

but I get this error:
bash: pango-querymodules: command not found


Edit:

Solved with:
Code: Select all
# cd /etc/pango
[root@localhost pango]# cd x86*
[root@localhost x86_64]# pango-querymodules-64 > pango.modules
[root@localhost x86_64]# cd ..
[root@localhost pango]# cd i386
[root@localhost i386]# pango-querymodules-32 > pango.modules