- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- BackUp & Recovery
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 04:00 AM
тАО09-12-2003 04:00 AM
I m in need to find a way to BackUp and Recover a Linux system. (I ???m missing HP???s IGNITE and make_recovery......)
I got a SuSE SLES8 running on a PC. Also I got a SureStore Tape running for writing the data on a tape. Using anyway a NFS- mount will also be no problem.
What I tried is using Norton Ghost. The Problem is the Linux-Filesystem which can??? t be compressed by Norton Ghost, so the Image ist very large!
Next try was to write a tar-archive which included all data via NFS mount to another PC. The Problem was to write back the data and to install grub.
Is there still a way to make something like a Flash-Archive under SOLARIS and write it back?
Best regards,
Juergen
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 04:31 AM
тАО09-12-2003 04:31 AM
SolutionWhat you need is mondo rescue : backup (and compress if you want) to CD, tape, network... restore from the same...
http://www.microwerks.net/~hugo/
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:35 AM
тАО09-12-2003 05:35 AM
Re: BackUp & Recovery
I mount fs read only
for all mount point ext2,3 fs from single user mode to tape.
Also use tar for none ext2,3 to tape
ex : tar cvf /dev/nst0 /dos
If I need to restore I use 1 cd of RH install in expert mode .
I have tested restore a few time to be sure.
hope this is what you need
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 08:21 AM
тАО09-12-2003 08:21 AM
Re: BackUp & Recovery
------------------------
Using tar
- used for creating archive files
- example
make archive + gzip compression:
# tar cvzf /var/tmp/boot.tgz /boot
extract files into a temp location:
# mkdir /tmp/untarred; cd /tmp/untarred
# tar xvf /var/tmp/boot.tar
Using dump/restore
- backup/restore ext2/3 filesystem
- support full and incremental backups
eg.
# dump -u -f
# restore -rf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-15-2003 02:08 AM
тАО09-15-2003 02:08 AM
Re: BackUp & Recovery
http://lwn.net/2001/0503/a/lt-dump.php3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-15-2003 04:28 AM
тАО09-15-2003 04:28 AM
Re: BackUp & Recovery
I will rewrite my cron/automatic backup script to use cpio or tar
The odds are to high for disaster recovery
PLease 0 point for this reply !
J-P