Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Redhat / Fedora Linux Help > well known backup scripts? (using rsynch)
 Redhat / Fedora Linux Help   Help and discussion related to Redhat and Fedora Linux.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 07-13-2008   #1 (permalink)
Just Joined!
 
callagga's Avatar
 
Join Date: Jan 2008
Posts: 15
Question well known backup scripts? (using rsynch)

Hi,

I'm looking to set up backups on my linux box. I'm looking now at the two scripts below. If you know of any more well known & tested backup scripts than these can you let me know?

* rsnapshot

* HOWTO: Backup nightly via rsync

Thanks
callagga is offline  

Reply With Quote
Old 07-14-2008   #2 (permalink)
Linux Newbie
 
Join Date: Jun 2008
Location: Georgia, USA
Posts: 106
Hello callaga:

Here is one of my scripts I use to backup the etc directory on my servers:

#!/bin/bash
# Set a value that we can use for a datestamp
DATE=`date +%Y-%m-%d`

# Our Base backup for home directories
BOX="serverIP"
BASEBACKUP="/opt/backup-dir/$BOX/full-backups/etc"

# This is where we throw our backups.

# Test to see if our backup directory exists.
# If not, create it.
if [ ! -d $BASEBACKUP ]
then
mkdir -p $BASEBACKUP
fi

tar cvzpf etc-$DATE.tar.gz /etc

mv etc-$DATE.tar.gz $BASEBACKUP


Just change "serverIP" for either your server's IP or its host name.
This script does a full backup of this directory.

The next one is for incremental backups of this directory:

#!/bin/bash

DATE=` /bin/date +%m%d%Y-%H%M`

find /etc -type f -mtime -1 | xargs \
tar cvzpf
/opt/backup-dir/serverIP/incremental-backups-$DATE.tar.gz


The script for incremental backups backs up all the files that have changed in the /etc directory within the past 24 hours.

I hope this helps.
__________________
Thanks.
--Willie
If there was no Linux, my life would not be complete.
wbens is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Free Network Mapping Tool for Microsoft® Office Visio® Professional 2007 Users
Don't map your network by hand – let LANsurveyor Express for Microsoft Visio Professional 2007 automatically create network diagrams for you.
subscribe
Free eBook:"Vulnerability Management for Dummies"
Get all the Facts and See How to Implement a Successful Vulnerability Management Program.
subscribe
Google vs The World: The Battle of the Message Security Vendors
With such a powerful name behind it, Google Message Security stands out in a sea of products that do exactly the same thing - or so they say.
subscribe

Safe, Secure Backup


All times are GMT. The time now is 01:18 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2