A simple BASH script to do nightly backups to tarballs to a seperate hard drive (not to tape). Supports full and incremental backups. Ideal for linux home users to easily backup all or parts of their system, provided they have an extra hard drive.
License
GNU Library or Lesser General Public License version 2.0 (LGPLv2)Follow Simple Bash Backup Script
Other Useful Business Software
Simplify IT and security with a single endpoint management platform
NinjaOne automates the hardest parts of IT, delivering visibility, security, and control over all endpoints for more than 20,000 customers.
The NinjaOne automated endpoint management platform is proven to increase productivity, reduce security risk, and lower costs for IT teams and managed service providers. The company seamlessly integrates with a wide range of IT and security technologies. NinjaOne is obsessed with customer success and provides free and unlimited onboarding, training, and support.
Rate This Project
Login To Rate This Project
User Reviews
-
Nice, easy to make some personal mods I chose. There is one problem I found. The tail continues to run after program end and you will end up with multi tail executions running in Linux. This modification seems to stop this. Change: "then tail -f $LOGFILE >&3 & # run tail in bg" To: "then tail --pid=$(pgrep -x simplebashbu) -f $LOGFILE >&3 & # run tail in bg"
-
Very good Software.
-
I've used this script many times on many machines over the last 10 years. It's still a great tool. On my qmail servers, I make one adjustment to the email notification section. Original: then cat $LOGFILE | mail -s "$EMAILSUBJECT" $EMAILADDRESS Change to: then echo -e "Subject: <your server> Backup Completed Successfully\n" | cat - $LOGFILE | /var/qmail/bin/qmail-inject $EMAILADDRESS Maybe folks will find that useful. --Jeff
-
Nice script ported it to OSX 10.6 , made some minor adjustements. Time Machine is OK but always like a script.