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. |
|||
