Tag Archives: UNIX

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 »

How To Find Broken Symbolic Links

By | 2018-06-27

Sometimes you may want to find and remove broken symbolic links from your systems. For example, OSSEC will complain if it finds broken symbolic links in directories it monitors. This guide should work on almost any Linux or UNIX like operating system. The following command will list broken symbolic links in the directory you specify.… 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 »

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 »