Install the MATE desktop on Ubuntu and enjoy a nice reliable desktop environment.

To install the MATE desktop environment on Ubuntu 20.04, run this simple command. jason@jason-desktop:~/Documents$ sudo apt install mate-desktop-environment-extras mate-common mate-desktop-environmentjason@jason-desktop:~/Documents$ sudo apt install mate-desktop-environment-extras mate-common mate-desktop-environment Then you need to logout of the desktop session and restart the desktop login manager to allow it to detect MATE. Press Control-Alt-F2 and then login to a virtual … Read more

Microsoft Windows Defender available for Linux.

The Windows Defender anti-virus and anti-malware application is now available for Linux. This is very easy to install on Ubuntu. I am using Ubuntu 18.04 and it works a treat. Before installation, ensure you have the required packages installed. sudo apt install gpg apt-transport-https libplist-utilssudo apt install gpg apt-transport-https libplist-utils To begin the installation, we … Read more

Install Google Earth easily and browse the planet.

Install the Google Earth viewer easily on Ubuntu. This allows viewing any place on the Earth you wish to see. As well as street view and 360 photos. Download Google Earth from this link. https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb. Then easily install it on Ubuntu. 4.4 Fri Jun 19 jason@Yog-Sothoth 0: $ sudo dpkg -i google-earth-pro-stable_current_amd64.deb This will easily … Read more

Corona virus app a big success. 1.8 million installations in Australia.

The Corona virus app is live and is becoming a big success. This new app for Apple and Android is a proximity app using Bluetooth is intended to alert a person if they have been in close proximity to another person who has been diagnosed with the Covid-19 virus. Google Play: https://play.google.com/store/apps/details?id=au.gov.health.covidsafehttps://play.google.com/store/apps/details?id=au.gov.health.covidsafe. Apple App Store: … Read more

How to install Docker on Linux to run virtual containers.

To install Docker on Ubuntu, we need to be able to add a custom repository. This is the command required. 4.4 Mon Dec 23 jason@Yog-Sothoth 0: $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable"4.4 Mon Dec 23 jason@Yog-Sothoth 0: $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" Then update … Read more

How to install a program from a tar.gz file on Linux easily.

I am needing to install Emacs on my computer and I have decided to install from source. This is easy on Linux, I had to ensure I had the latest build of Emacs. Then I could compile the source code. Download the source here: http://ftp.gnu.org/gnu/emacs/emacs-26.3.tar.xz. Firstly, extract the source to a folder. 4.4 Wed Oct … Read more

How to install .NET 3.51 on Windows easily with Powershell.

I had problems installing .NET 3.51 on Windows 8.1, the downloaded installed kept saying that it could not access the Internet to download and install the files, which is retarded. So I put in the Windows DVD and used the command below in an Administrator Powershell session. PS C:\Windows\system32> Dism /online /enable-feature /featurename:NetFx3 /All /Source:I:\sources\sxs … Read more

Install a nice new web browser on Linux. The Brave browser is fast and secure.

The brave web browser is a very secure alternative to Firefox and Chromium for the Linux platform. To install this browser on Ubuntu 18.04, use snap. 4.4 Wed Sep 25 jason@Yog-Sothoth 0: $ sudo snap install brave Warning: /snap/bin was not found in your $PATH. If you’ve not restarted your session since you installed snapd, … Read more

Windows still having issues with updates in 2019.

Linux and Windows are continually in a state of competition, but the problem with Windows 10 is the update methods that create many and varied problems that should never even happen in the first place. The Linux and Macintosh operating systems do not have that many problems when upgrading. I have updated Macintosh OS to … Read more

Compiling and installing a 2.4 kernel on Debian GNU/Linux Sarge.

Compiling and Installing a 2.4 Kernel on Debian This is quite like the installation process for the 2.6 kernel. Just unpack the kernel sources to your home directory and cd to the directory and type make mrproper to make sure the source directory is clean. Then type make menuconfigmake menuconfig And follow the options to … Read more

Just upgraded to OSX Mojave.

I have just upgraded a Macbook to OSX Mojave. This was very painless, and did not take very long at all. Upgrading a Macintosh machine is much easier than upgrading Windows 10, with all of the hassles and file deletion issues involved in that process. After the installation process, I had a new login screen, … Read more

Useful tips for a programmer on a Macintosh machine. Install GCC.

How to install the GCC compiler for Macintosh programming on a Macintosh Air. This simple command will install the GCC compiler collection and the make command on a Macintosh. This enables programming console apps on a Macintosh machine. These instructions are for Macintosh OSX Sierra. May not be the same on an older Macintosh machine. … Read more

How to play Doom on Linux with the Russian Overkill mod for fun.

Playing Russian Overkill is a lot of fun, and this can be done on Linux as well as Windows. We need to add another repository to Ubuntu to manage this. Add the required package repository. I am assuming you already have a copy of classic Doom and the Russian Overkill mod. sudo apt-add-repository ‘deb http://debian.drdteam.org/ … Read more