Some cool footage and images of old operating systems.

Installing BeOS on a modern computer. This is a very cool alternative operating system. The screenshot below, shows an Apple II machine connecting to a Debian server over a network connection. This allows the more powerful machine to be administered easily over a remote connection. I wonder if you could…

Read More

Image manipulation with the Linux shell.

Emulate a Polaroid photo with the imagemagik package on Linux. convert lifeinCanberra_bg.jpg -polaroid 0 house.jpgconvert lifeinCanberra_bg.jpg -polaroid 0 house.jpg This is the original image. https://www.asis.gov.au/media/Images/Rebrand/lifeinCanberra_bg.jpg. And this is the image after manipulation. Double the size of an image, while retaining relatively good image quality. convert missile.jpg -magnify missilebig.jpgconvert missile.jpg -magnify…

Read More

How to have a custom message appear each time sudo is used.

This is how to have a custom lecture appear each time a user executes the sudo command to remind them to be careful with it. Run the visudo command as root and add these lines to the /etc/sudoers file. Defaults lecture="always" Defaults lecture_file="/home/jason/lecture"Defaults lecture="always" Defaults lecture_file="/home/jason/lecture" Then create the /home/jason/lecture…

Read More

New themes for your Linux desktop in 2018.

Nice Linux themes and wallpapers Some more lovely GTK themes and wallpapers for your new Linux desktop in 2018. Gnome Shell themes Human Next: https://www.gnome-look.org/p/1188270/. Maxim: https://www.gnome-look.org/p/1182550/. Copernico: https://www.gnome-look.org/p/1013056/. Wallpapers for Gnome and MATE Railway line through the mountains: https://alpha.wallhaven.cc/wallpaper/22805. Looking down on a swimming pool beside the ocean: https://alpha.wallhaven.cc/wallpaper/575741….

Read More

Get a CPU-Z styled application for Linux to keep track of CPU status.

The CPU-Z app for Windows is very good for keeping track of the status of your CPU, but this is also available on Linux with the I-Nex app. This will show comprehensive CPU information that is very detailed indeed. Get the Debian packages here: https://launchpad.net/i-nex/+download. The Ubuntu 16.10 packages installed…

Read More

How to change the Virtual Terminal font in Debian and Ubuntu easily.

To change the font in the Virtual Terminal in Debian or Ubuntu/Linux Mint, run this command. sudo dpkg-reconfigure console-setupsudo dpkg-reconfigure console-setup This lets you select the various character sets and fonts to customize your virtual terminal. jason@jason-desktop:~$ sudo dpkg-reconfigure console-setup [sudo] password for jason: Your console font configuration will be…

Read More

Some very useful Ubuntu tips.

To find out what repository a package came from, use the dpkg -s command. jason@jason-desktop:~$ dpkg -s zdoom Package: zdoom Status: install ok installed Priority: optional Section: web Installed-Size: 9330 Maintainer: DRD Team <[email protected]> Architecture: amd64 Version: 2.8.1 Depends: libc6, libstdc++6, zlib1g, bzip2, libgtk2.0-0 Recommends: timidity, libfluidsynth1 Description: Advanced Doom…

Read More

How to crack an Ubuntu user password easily with John The Ripper.

Cracking an Ubuntu password with John the Ripper is very easy. All that is needed is a good wordlist and the John The Ripper utility. Install the John the Ripper password cracking utility. jason@jason-desktop:~/Documents/Windows$ sudo apt install johnjason@jason-desktop:~/Documents/Windows$ sudo apt install john Dump the Linux user account information to a…

Read More

Hr Giger wallpapers for your Debian or Linux Mint desktop. These are amazing.

https://slowsoulburn.files.wordpress.com/2014/02/hr-giger_003406131.jpg This looks like a bunch of strange beetles crawling around. http://cache.gawkerassets.com/assets/images/8/2011/10/space-jockey—enclosure.jpg The alien Space Jockey in his seat. As seen in the movie Prometheus. http://wallpaperbackgrounds.com/Content/wallpapers/dark/occult/205915-22087.jpg This wallpaper is very dark and strange indeed. With Baphomet at the top of the image and a woman with a Xenomorph head, this is one strange…

Read More

New Linux distribution Sparky Linux. Based on Debian.

Easiest way to get the UNIX CDE desktop installed on a Linux Debian distribution There is a new Linux distribution available. Sparky Linux. This is based on Debian and has quite a lot of software available. Debian is a very stable Linux system and basing a new distribution on it…

Read More

Some useful Linux configuration files. How the system is setup.

Some system configuration files on Linux and what they do /etc/profile This configuration file controls the system-wide environment variables. This contains the PATH variable that controls where binaries may be run from system-wide. /etc/motd This file contains a message that will be visible above the login prompt on the virtual…

Read More

Connect to a Debian 8.0 machine over RDP with xrdp.

Using xrdp on Debian to allow remote desktop connections from a Windows machine is very easy. I wanted to connect to a Debian 8.0 instance running in VMware from a Windows 7 installation. Firstly, I installed xrdp on Debian. root@debian:/home/jason# apt install xrdproot@debian:/home/jason# apt install xrdp Then I had to…

Read More