How to increase swap space in Linux
In this post, I show you how to extend your system’s RAM using a swap file.
In this post, I show you how to extend your system’s RAM using a swap file.
This post lists a few useful commands for inspecting disk usage and reclaiming free space in Ubuntu systems.
Postgres is a popular open source enterprise-ready database management system.
In this post, I show how to install and configure it on Linux.
In this post, I show you two ways of installing and configuring nginx on Linux.
A part of my job involves connecting to a couple of Amazon EC2 instances(Linux servers) regularly to run commands, build, debug and deploy code. All along I’ve been using tabs terminal tabs to keep track of each server connection and the processes running in it. Using the terminal emulator’s tabs feature works okay for simple …
Pycon Africa 2020 took place on August 4 to 8 of 2020. I had the privilege of giving a talk at this conference. I knew that I wouldn’t be able to give my talk live, so I sent the organisers a recording of the talk that I had made a few days before. I hadn’t …
Linux: How to increase video volume without re-encoding video Read More »
Learn how to count the number of commits or number of lines a contributor has added to a git repository.
Desktop notifications are used to inform the user about an event or display some form of information without getting in the user’s way. Notifications are usually small pop up windows that disappear after a short while. There are a number of ways to display notifications using Python, but most of these depend on some GUI …
Recently, while working on a project, I needed to search if an image I intended to delete was in use anywhere else in the code. There were lot’s of text files to go through and I needed a quick way to tell whether or not it was safe to delete said image. I learned how …
How to find all files containing specific text in linux? Read More »
In Linux, a common file format is the tarball. A tarball is a compressed folder similar to a zip file. Most Linux distributions include a graphical archive manager that allows the user to extract and manage different types of archives. While GUI based packages are great, I prefer using the terminal to manipulate files. A …