Category Archives: Guides

Beginner’s Guide to find

By | 2019-05-04

The Linux find program is very powerful. It has a small learning curve, but a little time spent learning find now will save you a lot of time later. The Linux find command isn’t actually part of Linux. It is a program that is part of the GNU findutils project. It can be installed on… Read More »

Installing HAProxy From Source on Debian Stretch

By | 2019-04-28

The Debian Stretch repositories provide HAProxy version 1.7. You may want or need features in newer versions. Fortunately, installing HAProxy 1.9.7 from source is relatively straightforward. The steps to do so are: Install required packages Download the HAProxy source code Compile and install HAProxy Create an unprivileged service account Create a SystemD unit file Create… Read More »

Installing HAProxy From Source On CentOS 7

By | 2019-04-27

The CentOS 7 repositories provide HAProxy version 1.5. You may want or need features in newer versions. Fortunately, installing HAProxy 1.9.7 from source is relatively straightforward. The steps to do so are: Install required packages Download the Lua source code Download the HAProxy source code Compile and install Lua Compile and install HAProxy Create an… Read More »

How to Check Linux Disk Space

By | 2019-04-17

Checking disk space in Linux can done with the command line progams df and du. df is used to show usage at the filesystem level, while du can be used to show how much space individual files and directories use. If you aren’t familiar with how Linux presents storage devices, you will probably want to… Read More »

Linux Filesystem Hierarchy

By | 2019-04-14

Unlike Windows, Linux doesn’t use drive letters to distinguish storage devices. It uses a single hierarchy starting at /. Storage devices are associated with directories within this hierarchy through a process called mounting. I’ll cover mounting and mount points more later on. The term Linux filesystem hierarchy refers to this tree structure. The Root Directory… Read More »

OpenLDAP Referential Integrity Overlay

By | 2019-03-30

The OpenLDAP referential integrity overlay is used to keep attributes that refer to the DNs of other entries consistent when changes occur. If you are trying to make groups more manageable, consider using the memberOf overlay. The referential integrity overlay will automatically modify or remove attributes if the entry they refer to is renamed or… Read More »