Backup Home Directories in Linux

by Vivek Gite on May 2, 2006 · 3 comments

Q. I would like to Backup all directories in /home to /dev/st0 tape drive. How do I use script to automate task and what commands do I need to use?

A. Use tar command to backup /home directory. The GNU version of the tar archiving utility included with all Linux distributions. Following tar command also works with Solaris/HP-UX UNIX and FreeBSD/*BSD oses.

For example tar command to backup /home should be as follows:
# tar -czf /dev/st0 /home

Where,

  1. /dev/st0 : Linux SCSI Tape device name
  2. /home : Home directory name

This will also backup hidden files and directories. Since this topic is already covered, please refer scripts and previous posts:

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 3 comments… read them below or add one }

1 Partha Chakraborty January 8, 2008

This site is extremely helpful in learning scsi tape backup in Linux. I wish you good luck and thank you all for the help.

Reply

2 Imran Said November 12, 2008

This site helped me lots. thanks for all this brilliant effort.

Reply

3 sumit October 8, 2009

i had tried to take backup of whole system , backup has started but there is not any messages apperas after finishing the backup after taking servral hours

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 3 + 11 ?
Please leave these two fields as-is:
IMPORTANT! To be able to proceed, you need to solve the simple math so we know that you are a human and not a script.




Previous post:

Next post: