- Desktop effects are temporarily disabled
- Firefox already running
- Fixing garbled text console (NVidia)
- Java gone after upgrade to 10.04
- Preventing resolv.conf from being overwritten
- Slowdown after upgrade to 10.04
- Touchpad fix (Kubuntu 8.10)
- Using the original console fonts in Konsole
- Wireless problems in 11.04
In Ubuntu and many other recent distributions, bitmap fonts are disabled by default. This is to prevent the system from attempting to scale bitmap fonts which would give ugly results. Turning off bitmap fonts is done using a font rule found in a file under Create a new file
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/usr/share/apps/konsole/fonts</dir>
<selectfont>
<acceptfont>
<pattern>
<patelt name="family" >
<string>Console</string>
</patelt>
</pattern>
</acceptfont>
</selectfont>
</fontconfig>
Then execute fc-cache -v -f
Now you should be able to choose the console font. |
|||