Posts

Showing posts with the label fonts

CyLog Raster Fonts for Linux

Some of you may be familiar with the bitmap (raster) fonts that I have created a few years back or the Raster Font Editor software that I've written for MS Windows. I've been using Linux quite a lot recently so I decided at some point to convert them to BDF (Binary distribution format) files. Here's a quick guide on how to download them and install them: Download Fonts You can either download from here or type this from a terminal window: wget http://www.cylog.org/files/fonts/cylog_fonts_bdf.zip Unzip and Copy fonts In a terminal window type the following: unzip cylog_fonts_bdf.zip mkdir ~/.fonts mv *.bdf ~/.fonts cd ~/.fonts ls ...and ensure you can see the *.bdf files listed. Convert the BDF files to PCF To do the conversion we use the command line utility bdftocpf , and then we remove the BDF files: bdftopcf -o leros10.pcf leros10.bdf bdftopcf -o leros.pcf leros.bdf bdftopcf -o lini.pcf lini.bdf bdftopcf -o yamahana.pcf yamahana.bdf bdftopcf -o ya...

Useful Fonts for Linux

I'm on a mission here to write personal reminders for linux installations... My latest collection of monospaced (and not only) fonts can be installed from the command line by typing the following: sudo apt-get install ttf-mscorefonts-installer (Note: do not attempt to run this through the software manager - it has to be executed from the command line as it displays a EULA that needs to be accepted) sudo apt-get install fonts-ubuntu-font-family-console sudo apt-get install fonts-inconsolata sudo apt-get install ttf-ubuntu-font-family sudo apt-get install xfonts-terminus Tahoma Tahoma is not included with the mscorefonts. Here's how to add it. Tahoma: cd ~/Downloads wget http://download.microsoft.com/download/ie6sp1/finrel/6_sp1/W98NT42KMeXP/EN-US/IELPKTH.CAB cabextract -F 'tahoma*ttf' IELPKTH.CAB sudo mv -f tahoma*ttf /usr/share/fonts/truetype/msttcorefonts/ sudo chmod 644 /usr/share/fonts/truetype/msttcorefonts/tahoma* sudo fc-cache -v rm -f IELPKTH.CAB ...