Linux Screen Basics

The “Screen” command is a very useful utility that allows you to create a session (or sessions) which you can run programs in, but in such a way that you can detach from the session (screen) if you needed to logoff your terminal or reboot your client machine, but without loosing what you were doing … Read more

Docker Basics

Containerisation is an increasingly popular method to deploy and run applications on both your computer but also for enterprise applications. Containerisation essentially bundles an application’s code with all the files and libraries it needs to run. Having a layer of abstraction like this means that as long as you are running the same Operating System, … Read more

What can people really see when you use un-encrypted connections?

Although its becoming increasingly rare nowadays to be using un-encrypted connections, let’s see what it really means at the network level. Un-encrypted connections on their own are not necessarily a problem, its all about what value what you are sending has and therefore what could be exposed to a nefarious actor. If you are viewing … Read more

Docker Install on Ubuntu 22.04.2 LTS

To install Docker on Ubuntu 22.04.2 LTS you can use these simple instructions, these are based on a standard Ubuntu 22.04.2 LTS installation and using a user called “ubuntu”. Once downloaded make sure it is executable with: Now run the installation with the following, the script has sudo commands added so you may need to … Read more