Ubuntu 12.04 downloads available.

The downloads for Ubuntu 12.04 Precise Pangolin are available at the following links. precise-desktop-i386.iso 12-Feb-2012 07:59 719M Desktop CD for PC (Intel x86) computers (standard download) precise-desktop-powerpc.iso 12-Feb-2012 07:59 726M Desktop CD for Mac (PowerPC) and IBM-PPC (POWER5) computers (standard download) precise-desktop-amd64.iso 12-Feb-2012 07:58 717M Desktop CD for 64-bit PC (AMD64) computers (standard download) These … Read more

Enlightenment E16 and Lord of the Rings symbolism.

The Enlightenment E16 desktop I have setup on my computer is a very good example of a simple computer interface, the layout of the desktop with the iconbox and virtual desktop pager at the bottom of the screen, the clicking on the desktop to access the root menu and the overall eye candy aspect is … Read more

Good Firefox 11.0 setup for safer web browsing.

Good Firefox 11.0 setup for safer web browsing. The Firefox web browser truly is a very good and safe browser for everyday use, but with the addition of some extensions, the browsing experience can be made even more secure. Firstly, the Noscript extension is the best and most useful extension for blocking web scripts that … Read more

Installing a nice console font in Ubuntu.

To install another cool console font in Ubuntu, install this package: fonts-ubuntu-font-family-console. These fonts are quite blocky, but they are something different if you wish to try another cool font for your Linux console. Type this command to install these very lovely fonts. sudo apt-get install fonts-ubuntu-font-family-consolesudo apt-get install fonts-ubuntu-font-family-console These are the fonts you … Read more

Linux Mint 12 KDE released onto the Internet!

The KDE 4.7.4 respin of the excellent Linux Mint 12 distribution has been released. The KDE desktop is a good alternative to the Gnome Shell cinnamon desktop included with the default Linux Mint 12 distribution. There are a few options when it comes to downloading this distribution. 32 bit ISO: http://mirror.netcologne.de/mint//stable/12/linuxmint-12-kde-dvd-32bit.iso 64 bit ISO: http://mirror.netcologne.de/mint//stable/12/linuxmint-12-kde-dvd-64bit.iso … Read more

Using Linux commands to see information about your hardware.

Using the vmstat command to see which hard disk partitions are the busiest is very easy. Use the vmstat -p /dev/sda1 command and your hard disk information will be printed showing the number of reads and writes for each partition. On my Ubuntu system, the /dev/sda1 partition is the busiest. john@deep-thought ~ $ vmstat -p … Read more

Installing Enlightenment E16 on Ubuntu 12.04.

The Enlightenment E17 desktop window manager is very unstable when I use the packages supplied with the Ubuntu 12.04 release. I have installed the Enlightenment E16 window manager using a source tarball from this website and after installing the libimlib2-dev package I installed the source thusly. ./configure ; make ; make install And then I … Read more

Gnome 3.2 available in Debian Testing.

http://forums.debian.net/viewtopic.php?f=6&t=75463. The Gnome 3.2 desktop is available in the Debian Testing repository. This means that any Debian user who wishes to install and test out this new desktop may do so by switching to the testing repositories and installing the required packages. This forum post has some information on how to install the Gnome 3 … Read more

Setting a larger console font in Debian Squeeze.

This is very easy to do. Simply open a terminal and type: sudo apt-get install kbd-compat console-terminussudo apt-get install kbd-compat console-terminus This will install the setfont utility and a nice terminus console font. To set the desired font, type this command. The fonts will be in /usr/share/consolefonts. setfont Uni2-TerminusBold24x12.psf.gzsetfont Uni2-TerminusBold24x12.psf.gz If you want the changes … Read more

The evolution of the KDE Linux desktop. From 1.0 to 4.8.0.

The KDE 4.8.0 widgets explorer.

The KDE desktop has come a long way since the early KDE 2.0 desktop I was using on my old Pentium II Dell Optiplex running Debian 3.0. Nowadays the KDE desktop has changed quite a bit. I do not like the fact that the awesome KDE World Clock application that was once a separate application … Read more

Using the UNIX ed editor. The simplest line editor for writing text files.

The ed(1) line editor is a very useful editor for text files on Linux and it is very simple to use. type ed to start it then to add text to an existing text file, type e my.txt. Then a to append text onto the text file. [13:20:35-*-homer@hungry-forest Desktop]$ ed e my.txt 1449 a[13:20:35-*-homer@hungry-forest Desktop]$ … Read more

My nice .vimrc file.

This is a very good .vimrc file for any VIM user. Line numbering and indenting is enabled and it makes the VIM editor much more usable for any level of Linux user and programmer. " ~/.vimrc (configuration file for vim only) " skeletons function! SKEL_spec() 0r /usr/share/vim/current/skeletons/skeleton.spec language time en_US if $USER != ” let … Read more