Find the answer to your Linux question:
Results 1 to 7 of 7
Hello, I am new bee to linux. And i am working on linux administration. I need to backup my project folders regularly. Which is the best method i can choose ...
  1. #1
    Just Joined!
    Join Date
    Feb 2010
    Posts
    12

    Which is best method to back up projects

    Hello,
    I am new bee to linux. And i am working on linux administration. I need to backup my project folders regularly. Which is the best method i can choose to backup. I know that i can schedule it through cron. Is there any other best way.? If not where can i get good document about cron. I am using suse linux enterprise server 10 sp3.

    Thanks!!!

  2. #2
    Linux Guru Lakshmipathi's Avatar
    Join Date
    Sep 2006
    Location
    3rd rock from sun - Often seen near moon
    Posts
    1,568
    Does rsync suit your requirement ?
    - Lakshmipathi.G
    -------------------
    FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
    First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
    -------------------

  3. #3
    Just Joined!
    Join Date
    Feb 2010
    Posts
    12
    Sorry i am not aware of this rsync, as i am new to linux admiistritive side, i am searching for best. My requirement is i will be having around 10-15GB of data, that i need zip and back it up on some external device...

  4. #4
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,100
    Now you are aware of rsync

    It is a versatile tool, and can be used to copy incrementally and accurate on the same host or between hosts.
    Reading the documentation pays off.
    Code:
    man rsync
    Another tool you could use is tar
    Code:
    man tar
    But for both tools:
    Make sure that these 10-15GB are static files while they are copied.
    for example: database files from an running DB instance wont be consistent
    You must always face the curtain with a bow.

  5. #5
    oz
    oz is offline
    forum.guy
    Join Date
    May 2004
    Location
    arch linux
    Posts
    18,099
    Quote Originally Posted by linuxoptimistic View Post
    Sorry i am not aware of this rsync, as i am new to linux admiistritive side, i am searching for best. My requirement is i will be having around 10-15GB of data, that i need zip and back it up on some external device...
    Welcome to the forums!

    There really isn't any certain backup/recovery application that is considered by all to be "the best", so you might have to experiment with a few apps to decide what you like best. You can find some applications that might work for you here.
    oz

    new members/users: read this first | new member faq
    no private messages requesting computer support - post them on the forums!
    please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.

  6. #6
    Linux Guru
    Join Date
    Jan 2009
    Location
    Dover, NH
    Posts
    1,633
    If you are looking for an easy way to archive and compress, I've taken quite a liking to dar lately. (Page 4 on Ozar's link)

    Dar is similar to tar, but automatically compresses and adds an index so restoring single files is alot quicker (tar assumes the media is backed to a tape drive, so it's designed to scan to locate a file. Dar assumes the file is backed up to a disk, so it's designed to jump straight to a file in the archive).

    You do want to use a utility designed for Posix machines and not wintel (e.g. avoid zip, rar, arj, and zoo. I'm not sure about lha or 7z. The standard is tar and its derivatives) unless you don't mind nuking the permissions data. Like Ozar said though, it's difficult for us to tell you which is actually best. That will depend entirely on your situation, needs, and comfort level. Ozar has a good list.

  7. #7
    Just Joined!
    Join Date
    Feb 2010
    Posts
    12
    Thank you so much for the list. I am investigating which can be used for my needs.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...