Simple script to recursively count the number of files on a Linux server. ls -laR | wc -l How this works: ls (lists folder contents), […]
Continue readingCategory: Linux
Linux
Simple MySQL Database Backup
Another simple backup script. This script builds on the rsync file backup to allow daily, monthly, and yearly incremental MySQL database backups. The backup will […]
Continue readingSimple rsync Backup
This is a simple rsync backup that creates daily, monthly, and yearly incremental backups. This type of script would allow for recovery of just about […]
Continue readingSetup SSH Keys Between Two Linux Servers
SSH Keys will allow data to move between two Linux servers without first prompting for a login. This is useful if you want to automate […]
Continue reading