Tag Archives: Linux

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 »

How To Delete a Directory in Linux

By | 2018-06-28

There are a few ways you can delete a directory on Linux and UNIX systems. If you are using a desktop environment, you can probably right click on it in your file manager and select the appropriate option. If you are using the command line, you can use either the rm command, or the rmdir… 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 »