#!/bin/bash # A UNIX / Linux shell script to backup dirs to tape device like /dev/st0 (linux) # This script make both full and incremental backups. # You need at two sets of five tapes. Label each tape as Mon, Tue, Wed, Thu and Fri. # You can run script at midnight or early morning each day using cronjons. # The operator or sys admin can replace the tape every day after the script has done. # Script must run as root or configure permission via sudo. # ------------------------------------------------------------------------- # Copyright (c) 1999 Vivek Gite <vivek@nixcraft.com> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is part of nixCraft shell script collection (NSSC) # Visit http://bash.cyberciti.biz/ for more information. # ------------------------------------------------------------------------- # Last updated on : March-2003 - Added log file support. # Last updated on : Feb-2007 - Added support for excluding files / dirs. # ------------------------------------------------------------------------- LOGBASE=/root/backup/log # Backup dirs; do not prefix / BACKUP_ROOT_DIR="home sales" # Get todays day like Mon, Tue and so on NOW=$(date +"%a") # Tape devie name TAPE="/dev/st0" # Exclude file TAR_ARGS="" EXCLUDE_CONF=/root/.backup.exclude.conf # Backup Log file LOGFIILE=$LOGBASE/$NOW.backup.log # Path to binaries TAR=/bin/tar MT=/bin/mt MKDIR=/bin/mkdir # ------------------------------------------------------------------------ # Excluding files when using tar # Create a file called $EXCLUDE_CONF using a text editor # Add files matching patterns such as follows (regex allowed): # home/vivek/iso # home/vivek/*.cpp~ # ------------------------------------------------------------------------ [ -f $EXCLUDE_CONF ] && TAR_ARGS="-X $EXCLUDE_CONF" #### Custom functions ##### # Make a full backup full_backup(){ local old=$(pwd) cd / $TAR $TAR_ARGS -cvpf $TAPE $BACKUP_ROOT_DIR $MT -f $TAPE rewind $MT -f $TAPE offline cd $old } # Make a partial backup partial_backup(){ local old=$(pwd) cd / $TAR $TAR_ARGS -cvpf $TAPE -N "$(date -d '1 day ago')" $BACKUP_ROOT_DIR $MT -f $TAPE rewind $MT -f $TAPE offline cd $old } # Make sure all dirs exits verify_backup_dirs(){ local s=0 for d in $BACKUP_ROOT_DIR do if [ ! -d /$d ]; then echo "Error : /$d directory does not exits!" s=1 fi done # if not; just die [ $s -eq 1 ] && exit 1 } #### Main logic #### # Make sure log dir exits [ ! -d $LOGBASE ] && $MKDIR -p $LOGBASE # Verify dirs verify_backup_dirs # Okay let us start backup procedure # If it is monday make a full backup; # For Tue to Fri make a partial backup # Weekend no backups case $NOW in Mon) full_backup;; Tue|Wed|Thu|Fri) partial_backup;; *) ;; esac > $LOGFILE 2>&1
Install this script using cronjob.
See how to use tar and mt command.
To restore files / data from tar archives.
List the files:
# tar tvf /dev/st0
Extract the entire archive into current directory:
# tar xvpf /dev/st0
Extract only certain files or dirs into current directory. For example. Extract only home/vivek directory
# tar xvpf /dev/st0 home/vivek
You can also restore one file:
# tar xvpf /dev/st0 home/vivek/app/src/main.c
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
4000+ howtos and counting! Want to read more Linux / UNIX howtos, tips and tricks? We request you to sign up for the Daily email newsletter or Weekly newsletter and get intimated about our new howtos / faqs as soon as it is released.
- Download Script
- Email this to a friend
- Rss Feed
- Last Updated: 06/10/09
Sign up for our daily email newsletter:
{ 20 comments… read them below or add one }
I want to learn shell scripting so I need information about shell scripting in solaris unix or linux.Please send me detail information with basic concept.
Thank U
Ayyanagouda
Great … Good one :)
Helped a lot .
Hi Vivek,
I want to use mutiple directory/sub-directory to get the files…
Ex-
/fr302/orar1/jcr1db/9.2.0/*
/fr301/orar1/arch/jcr1/*
/fr300/finr1/jcr1appl1/*
Please guide me how to include mulitple folders in this script.
Regards,
Divakar
Hi
It’s great, but I can not use this script with Linux Enterprise 5. When I use command:
“mt -f /dev/st0″, its return this error “-bash: mt: command not found”. Please suggest me, how can I backup file to tape.
Thanks
Tawatchai
Install mt command
nice script
but when I try got error like this
./backupAll.sh: line 1: syntax error near unexpected token `(‘
./backupAll.sh: line 1: ` UNIX / Linux shell script to backup dirs to tape device like /dev/st0 (linux)’
I just copy n paste from your script n change some directory, can you help me… how to fix ?
and how to backup multiple directory
example I have
/home/
/home2/
/home3/
and your script BACKUP_ROOT_DIR=”home sales”
can I bring comma (,) like this BACKUP_ROOT_DIR=”home,home2,home3″
regards
aswin
ok I can fix the problem, but when I start again
I got this message
/bin/tar: /dev/st0: Wrote only 0 of 10240 bytes
/bin/tar: Error is not recoverable: exiting now
how to fix this problem,
regards
aswin
how to description $EXCLUDE_CONF file
regards
aswin
You have to create /root/.backup.exclude.conf as follows to exclude access_log or error_log file:
Hi,
I have used your script, but I get an error line 101: $LOGFILE: ambiguous redirect
I run the script as root.
The variable $LOGFILE get defined as /root/backup/log/Tue.backup.log
The last part of the script is
case $NOW in
Mon|Tue|Wed|Thu|Fri) full_backup;;
*) ;;
esac > $LOGFILE 2>&1
Kind regards,
Arjan
I found it. in line 34 of the script the variable is defined as $LOGFIILE instead of $LOGFILE
Correct LOGFIILE=$LOGBASE/$NOW.backup.log in LOGFILE=$LOGBASE/$NOW.backup.log and it runs
How do I add that an email be sent when tar has been completed or if it has completed with errors or it just didn’t backup?
how I add email notification to a user when the backup has finished successful or has stopped with errors.
Add function like as follows:
backup_status(){ local s=$1 if [ $s -eq 0 ] then echo "Backup Successfully done @ $(hostname)" | mail -S 'Backup Done' you@example.com else echo "Backup FAILED @ $(hostname)" | mail -S 'Backup Failed' you@example.com fi }Find the line in full_backup()
and append the following code to send email status backup_status $?, in the end should look as follows:
Also, update partial_backup() as follows:
HTH
When I run the backup everything seems to run fine, log looks clean. However, everytime I get a Backup failed.
Could someone explain this part of the code?
verify_backup_dirs(){
local s=0
for d in $BACKUP_ROOT_DIR
do
if [ ! -d /$d ];
then
echo “Error : /$d directory does not exits!”
s=1
fi
done
# if not; just die
[ $s -eq 1 ] && exit 1
}
@ mrlayance,
That function loops over all entries defined in $BACKUP_ROOT_DIR and ensures they exist. If they all exist, the function returns, which is correct, otherwise each directory that doesn’t exist is printed to STDOUT and then the script dies afterwards.
Thanks for the nice script Vivek,
Good to see you haven’t added compression which is so widely used but can lead to disasters when tapes fail.
Might be nice to extend this script to allow spanned archives however, in the event that data is larger than the storage capacity.
Hi
i have just found your website, and i try your nice script. Maybe a little update to do.
Your script works only with English locales, for a better internationalization i twill be nice to change NOW=$(date +”%a”) to NOW=$(date +”%w”)
Then do test between 0 and 6, with full backup to 1 (Monday)
Hi
Nice work, to better internationalization usage it looks better to use “normalized” date. Then use :
NOW=$(date +”%w”)
with case test from 0 to 6
and to partial_backup() function tar -N yesterday disable error problems in another language context.
With no English locales, there some pb without theses hacks
You might want to check out dar.