LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Backups... (https://www.linuxquestions.org/questions/linux-networking-3/backups-257842/)

againstms 11-22-2004 12:56 AM

Backups...
 
I have a RH 7.3 server runnign a very coplexed MIS system and I doubt that the MIS company will upgrade soon. Currently they made a dir availabel for me to backup using my NEO 2000 30xtape library with Backup Exec 9.1 but I am sure their must be an easier way or more secure way of backing up my server and makign sure I don't loose anything?

Can someone out there give me some ideas or tips on how this shoudl be done?

nixcraft 11-22-2004 01:45 AM

May be you can mirror all those dir with rsync to other UNIX box. But i'm not clear from your question.. you want to take backup on another UNIX box? or Tape or what else?

againstms 11-22-2004 02:07 AM

I woudl prefer to do backups to tape....

nixcraft 11-22-2004 10:29 AM

For tape backup you can use

tar
dump (full backup)
cpio

etc

Here is simple example:

assuming that your tape driver is /dev/st0
See tape drive staus:
Code:

mt -f /dev/st0 status
Rewind the tape:
Code:

mt -f /dev/st0 rewind

To backup /home/httpd dir:
Code:

tar -cvf /dev/st0 /home/httpd
To restore later:
Code:

tar -xvf /dev/st0
For more info read man pages or visit urls
How to use your tape drive under Linux :: http://nic.phys.ethz.ch/readme/80

Media rotation schem: http://www.dlttape.com/ThreeRs/Reliability/Rotation/

Hope this helps


All times are GMT -5. The time now is 06:21 AM.