LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   A good way to backup Redhat?? (https://www.linuxquestions.org/questions/linux-software-2/a-good-way-to-backup-redhat-315805/)

kphume 04-21-2005 03:28 PM

A good way to backup Redhat??
 
Hi all.

I have a Redhat 9 system. I want to do a FULL system backup, both Redhat and all the data (almost 90 GB total).

I have network attached disk storage that has more than enough storage to handle the backups.

Anyone have any ideas?

bigrigdriver 04-21-2005 05:38 PM

You can find information about several backup packages here .

srtechy 04-22-2005 12:26 AM

backup:
# shutdown any databases
cd /
find ./ -xdev | cpio -ov | gzip -c > /nas/backup.cpio.gz

restore:
cd /
gzip -dc /nas/backup.cpio.gz | cpio -iv

disclaimer: test carefully to ensure you get everything


All times are GMT -5. The time now is 04:56 AM.