Author Archives: tyler

About tyler

I would like to remain as anonymous as possible, so I am going to be somewhat vague. I have been working in IT for 15 years. I have experience with PC repair, software development, security, and systems administration. Over the years I have built my skills through self-study, military training, formal education, certification programs, vendor training, coursera.org, and work experience.

How To Install an RPM on CentOS

By | 2019-01-15

There are several ways to install an RPM on CentOS. This guide covers the command line programs yum and rpm. There are GUI tools, such as PackageKit, to manage packages, but since the command line tools will always be available, those are what I will cover. In most cases, you probably want to use yum.… Read More »

How To Delete a File In Linux

By | 2019-01-10

There are two main ways to delete a file on a Linux based operating system. Keep in mind that removing a file as described in this guide just removes references to the underlying storage system. Forensic tools may be able to recover their contents. There are ways to delete files that prevent their recovery, but… Read More »

LPI Linux Essentials Objective 1.2 – Major Open Source Applications

By | 2018-11-03

The Linux Professional Institute (LPI) Exam 010 objective 1.2 is awareness of major open source applications and their development. This guide applies to exam version 1.6. Disclaimer: I have not taken the exam. I do have more than a decade of professional experience working with Linux and open source software. Using my study guide does… Read More »

Rsync Backups

By | 2018-10-13

Rsync backups are versatile. You can can create full, differential and incremental backups of a directory. Rsync can backup files locally or remotely. Local Backups If you are backing up to another directory, removable storage, or a locally mounted network file system, then you will be creating local backups. Creating Local Backups To create a… Read More »

Disable SELinux on CentOS 7

By | 2018-09-22

To temporarily disable SELinux on CentOS 7, run this command as root: root@centos7 ~]# setenforce 0 If you want to turn it back on, use the command: root@centos7 ~]# setenforce 1 This will not persist across a reboot. If you want it to be disabled when the system boots, edit /etc/sysconfig/selinux and replace this line:… Read More »

OpenLDAP Multi-Master Replication

By | 2018-09-10

OpenLDAP Multi-Master Replication is for high availability, not load balancing. If a split-brain is possible, consider the mirror mode architecture described in the OpenLDAP Administrator’s Guide. A split-brain is where two or more nodes of a cluster are operating independently, which can cause the cluster data to become corrupt or out of sync. If you… Read More »