RHEL6 – How to Setup an Anonymous Download Only FTP Server

A while back I spit out a post on how to configure an anonymous ftp server that allowed uploads and downloads, which you can find here. Its a very exciting read and will tell you everything that you need to know to get you up and running with an anonymous ftp server. However those instructions are specifically for a server that allows anonymous uploads as well as downloads. So today we are going to go over only the steps for anonymous download, which is actually much easier.

RHEL6 – Quick and Dirty NFS How To

So if you are reading this you many not be aware of the fact that I already put up a post on NFS on RHEL6 (you can find it here). However that post is basically just a redirect to another blog post that I ran into on the subject. And despite the fact that its very well written, and has no apparent spelling mistakes, or inapropriate comments about NFS, I felt the need to draft my own post. At this point I really cannot seem to remember anything technical if I don't put up a blog post on the subject. After all I have been doing so for over 4 years, so why stop now.

RHEL6 – Getting Up Close and Personal With Rsyslog

LogRsyslog has replaced Syslog as the default logging daemon in RHEL6. Rsyslog was designed to complete with syslog-ng and has several enhancements over plain old syslog. This includes but is not limited to more granularity with timestamps, direct database logging, TCP support, and relay server names in host fields which makes it easier to track the path a message has taken. Below we are going to take a look at a few simple rsyslog configuration items.

RHEL6 – Quick and Easy Samba Configuration Guide

According to Samba.org , "Samba is an Open Source/Free Software suite that provides seamless file and print services to SMB/CIFS clients." Bottom line, samba allows you to share files and directories via Linux and access them on a Windows machine.

RHEL6 – How to Setup a Caching-Only DNS Server

First off lets get this straight, all DNS Servers cache. However, some DNS Servers intended to only provide the caching function. Which is what we are going to configure today. A Caching-only DNS server does not contain zone information or a zone database. Its cache only contains information based on the results of queries that … Continue reading RHEL6 – How to Setup a Caching-Only DNS Server

RHEL6 – Managing SELinux Booleans

This is my second post on SELinux. In case you missed the first one you can read it here. Today we are going to specifically discuss SELinux booleans According to fedoraproject.org ,"SELinux booleans enable runtime customization of the SELinux policy. SELinux policy in Fedora has several booleans that allow you to quickly toggle a particular … Continue reading RHEL6 – Managing SELinux Booleans

RHEL6 – Snapshotting an LVM Volume

Snapshotting in the context of LVM is the process of taking a point-in-time image of a filesystem and creating a separate copy of that filesystem on another filesystem... using LVM of course. Snapshoting can be useful if you need to take a backup of a filesystem but want the filesystem to be a quiesced state when you do so. Using LVM and snapshots you just backup the snapshot of the original filesystem.