Unsecured websites are still a thing in November 2019.

It is still possible to find anything on the Internet. Backups of websites containing passwords and information. It is all out there, and not everyone is getting the message that this is a bad idea. This could be used to harvest e-mail addresses and decrypt passwords. Do not store website…

Read More

How to best tag your music collection on Linux.

The best way to tag your music collection on Linux is with MusicBrainz Picard. This is an automatic music tagging program that will lookup music on the MusicBrainz website using acoustic matching and then automatically tag the tracks and save the processed files into a folder you specify. This works…

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…

Read More

Narodnaya Solyanka Cumulative Pack 2.2 to be out next year.

The new mega Stalker Shadow of Chernobyl mod Объединенный пак 2.1 is going to receive an update next year with the OP 2.2 version slated for release. This features a 64bit engine and new areas. This will also feature a new plot and older more familiar quests are redone. This…

Read More

Another good way to speed up the boot time of Ubuntu.

My Ubuntu 18.04 system was taking a long time to boot, but I have analyzed the problem with Systemd and now it should boot faster. Run this command to see which service takes the longest at boot time. 4.4 Thu Oct 17 jason@Yog-Sothoth 0: $ systemd-analyze blame | head -n…

Read More

Linux has come so far since the old days.

The many Linux distributions we have today have come a long way since the old days. The evolution of the Linux desktop has lead us in strange directions, culminating in the Gnome Shell desktop interface, as well as Ubuntu Unity. But these have some nice features that make up for…

Read More

Microsoft Windows 10 updates still an embarrassment.

Microsoft have been plagued by many issues regarding the quality control and testing within the organisation. The main problem is that there are different testing teams for each section of the operating system, and this has lead to problems slipping through the cracks into mainstream releases. This has caused a…

Read More

Trim multiple spaces with sed into a normal string.

To trim multiple spaces from a sentence and turn it back into properly readable text, use this sed syntax. sed ‘s/ \+/ /g’sed ‘s/ \+/ /g’ This is an example. echo "Hello, this sentence has multiple spaces in it and needs fixing." Hello, this sentence has multiple spaces in it…

Read More

Get information about your swap partition with this simple command.

This command will print information about your swap partition easily using the Linux command line. root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860 0 -3root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860…

Read More

Use nftables on your Linux machine to add more security.

The nftables firewall is a good alternative to iptables. This has better performance than the old iptables system. To install this on Ubuntu 18.04, run this command. 4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables Edit the…

Read More