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 Backup and Restore OpenLDAP

By | 2016-10-04

This guide assumes familiarity with UNIX like operating systems, X.500, LDAP and OpenLDAP. The Directory Backups section of the OpenLDAP 2.4 Administrator’s Guide, as of September 28, 2016, doesn’t have any kind of restoration procedures. This guide will help you do it. Backup OpenLDAP There are two methods for backing up OpenLDAP. One is to… Read More »

Self-Signed Certificate How-To

By | 2016-09-27

This guide will show you how to create a self-signed certificate with various tools. Quick Reference OpenSSL With New RSA Key openssl req -days 500 -newkey rsa:4096 -keyout privkey.pem -nodes -sha256 -x509 -out cert.pem With Existing RSA Key openssl req -days 500 -key privkey.pem -nodes -sha256 -x509 -out cert.pem Option Required What It Does req… Read More »

Introduction to Positional Notation

By | 2016-09-17

In computing, you will come across various numbering systems such as binary and hexadecimal. These systems are known as positional notation, but with different bases. This guide will explain positional notation and show you how to convert from one system, such as hexadecimal, to another. Positional Notation You probably learned this in elementary school, but… Read More »

Password Management

By | 2016-08-28

Passwords are used for banking, work, school, social media, message boards, email, and more. That is a lot of passwords to keep track of. Most of you have probably heard the advice to use pass phrases or long and complex passwords, even with secret questions. This is hard to do when you have dozens of… Read More »

Linux and UNIX File Permissions Guide

By | 2016-08-25

When you start seeing terms such as octal, binary, sticky bits, set UID, set GID, and ACLs, learning how UNIX file permissions work may sound confusing. Its not so bad after a bit of practice. In my opinion, it is easier than Windows permissions. You don’t need to understand octal and binary. It could possibly… Read More »

Why I Like FreeBSD

By | 2016-08-06

I am quite fond of FreeBSD. It has several nice features that I find very useful. This review will be most useful to people who are already familiar with UNIX like operating systems, but those that aren’t may still find it useful. It assumes readers understand basic systems administration. Here is a short list of… Read More »

VI Tutorial for Beginners

By | 2016-07-09

This vi tutorial should teach you just enough to do some basic editing and understand the documentation. I have tested it with vim and the version of nvi that ships with FreeBSD. It should work with any version. Vi is a popular text editor for UNIX like operating systems created in 1976. Unlike most word… Read More »