Notes about beginning LDAP

One of the things I hadn't the chance of managing at work is centralized authentication, either via LDAP, Kerberos or ActiveDirectory (not sorry about this one). LDAP in particular, has always been in the back of my mind because it's often cited in conversation ("this service authenticates against the domain ldap server" or "the bind… Continue reading Notes about beginning LDAP

Advertisement

A Linux development environment on Mac OS

I've been given a Macbook Pro at work. It was actually my choice, since it was the only machine with an US keyboard layout, 16 gig of ram and last but not the least, the easiest way not to use Windows and have a Unix environment at my fingertips. It's not too bad, but I'll… Continue reading A Linux development environment on Mac OS

Installing VirtualBox-6.0 on CentOS 7.5

This is a quick set of notes about the installation of VirtualBox-6.0 on CentOS 7.5. This OS is not explicitly listed on VirtualBox's website, so.. Reference page: https://www.virtualbox.org/wiki/Linux_Downloads . Install the appropriate key: sudo yum install -y wget wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | rpm --import - (You might want to change the wget command to… Continue reading Installing VirtualBox-6.0 on CentOS 7.5

Passing Red Hat’s RHCSA certification (EX200): my experience

Just a week ago I passed the Red Hat Certified System Administrator exam, and here are some brief notes about my experience. Why the RHCSA certification? At first I didn't plan on taking the exam at all. But I have been using pretty much Debian/Xubuntu only for a long long time and for the last… Continue reading Passing Red Hat’s RHCSA certification (EX200): my experience

On commenting code: external vs internal documentation

In my day job, I sometimes have to write scripts in order to automate things that either happen too often to be handled manually or need to be handled in the shortest amount of time possible.But more often, I am tasked with modifying the behavior of an already existing script and/or adding new functionalities.Needless to… Continue reading On commenting code: external vs internal documentation