Posts

Installation of Mint 17.1 Cinnamon on VMWare

It's been 2.5 years since I posted an installation guide of installing Ubuntu 12.10 on VMWare Workstation but the release of Linux Mint 17.1 has prompted me to write an updated guide. This is the third of my guides, acting mostly as a memo for a quick install of new distros on VMWare, my first one written in 2009 ( Linux on VMWare with later additions of other posts full of little hints and reminders (e.g. fonts, keymaps)). Ingredients Please note that these instructions work for most distros, although this post focuses on Mint 17.1 A downloaded ISO image of your favourite distro ( Mint , Mint LMDE , Ubuntu , Debian ) A newly created virtual machine with 2-8GB of RAM, a 40-60GB disk and a couple of CPU cores. Installation Mount the ISO image to your VM's optical drive and boot it up, then follow the instructions to install your distro selecting your preferences (timezone, keyboard layout, etc.). For accessing your VM via ssh from your host, it helps if your Lin...

Now and Then

Go back twenty years, let's say 1994. You've got a new computer, you get your stashes of CDR disks and floppies, and start installing software. One after the other, OS first for some of us, a bit of config, then utilities, some word processor, some painting package. A compiler, an editor. You'll run them all at least once, reboot multiple times, etc. Now, go back ten years, 2004. You've got a new laptop. You install OS, create user account, setup language, regional settings. You "plug the internet" in, download software, install, configure and so on. Most of your software still comes from CDs or DVDs maybe, installation, serial numbers, you know the drill. Today, 2014. You've got a new tablet. You boot it up, log in to the WiFi. Go to app store, login. Start downloading your already purchased apps, run, log in, Chrome, GMail, Facebook, Twitter, Tumblr, Instagram, Flipboard. Every app needs a password, every app needs preferences, notification co...

Chrome Packaged Apps

Image
For a few years now I use Windows, Linux, OS X daily. For years, I've been looking into a language/framework/product that will allow me to build (desktop) applications that can run on all of these OS's. I've looked into QT , PyQT , Java Swing and others. I've looked into the cloud , PaaS , web applications but I couldn't find something that I liked. Of course, HTML5 has gained a lot of momentum and I've been following it from the very first day, so I was "double" happy when I found out about the Chrome Packaged Apps that look and behave like desktop apps, they can however live perfectly in the cloud and are built purely with web technologies. The fact they can run on my Chromebook too, is the cherry on top. Hello World! No time to lose, I jumped into the proverbial Hello World app, which run on my stable Chrome 27.0.1448.0 without a glitch. You have to follow instructions on the previous link to enable the Experimental Extension APIs on chro...

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

Exactly how big is...

Image
I always knew of the Mercator Projection and how it makes things (errm land) at high latitudes appear larger than they are, so I decided today to give it a shot and try some comparisons using essential tools like Google Earth , Google Maps , Alt-PrtSc and... Photoshop . Comparisons always need to be made against a known measure (to me) which of course had to be my native Greece, therefore I decided to bring some northern countries to the... Mediterranean Sea . Britain I've been living in ye olde Albion for quite some time now, so first things first; Great Britain to the Med: Mercator Projection: Actual Size: Denmark I've got something with Denmark, maybe because I have a few friends living there, maybe because my wife has a vein of Danish blood. Whatever, Denmark is up North so it's a good test! :-) Mercator Projection: Actual Size: Further North - Iceland Well Iceland is bloody North and its an island too, therefore it should really prove my p...

Installation of Ubuntu 12.10 with Unity on VMWare

A while ago I posted a "how-to" doubling as a check list for installing Linux on VMWare and later I've added other posts full of little hints and reminders (e.g. fonts, keymaps). A few years later and that information is still valid, however my workflow has changed a bit, so here's a new post based on Ubuntu 12.10 (Quantal Quetzal) trying to consolidate everything into one big list. Ingredients A downloaded ISO image of your favourite distro ( Ubuntu , Debian , Mint ) A newly created virtual machine with 1-1.5GB of RAM, a 20-40GB disk and a couple of CPU cores. Installation Mount the ISO image to your VM and boot it up, then follow the instructions to install your distro selecting your preferences (timezone, keyboard layout, etc.). It helps if your Linux account has the same username as the one on your host OS - it helps when accessing your computer via ssh. Once the installation finishes and the VM boots up, log in with your newly created user account ...

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