- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- TOOL FOR DISASTER 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
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
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
10-02-2001 08:20 AM
10-02-2001 08:20 AM
TOOL FOR DISASTER RECOVERY
THANKS!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 04:14 PM
10-02-2001 04:14 PM
Re: TOOL FOR DISASTER RECOVERY
Linux. If what you are looking to do is recover a
standard image from a common server then you
could build a small bootp image that runs a short script
to configure and build the disk partitions, then restores
the partitions over the network. Most distributions
will allow you to do this.
You could also try recovering a disk image in the same
manner. This presumes the disaster was not a failure
of the Disk, CPU, memory, network card, or other
failure from which you can't automatically recover.
Most distributions have funtional rescue disks
that run off of one or two floppies. I can install a
functional debian distribution over the net in under an
hour including time to dowload the floppy images, copy
them to disk, and brush up on the installation guide.
The best reference I have found so far is the O'Rielly
UNIX Backup and Recovery book.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 03:45 AM
10-03-2001 03:45 AM
Re: TOOL FOR DISASTER RECOVERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 06:07 AM
10-03-2001 06:07 AM
Re: TOOL FOR DISASTER RECOVERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 01:03 PM
10-03-2001 01:03 PM
Re: TOOL FOR DISASTER RECOVERY
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2001 03:42 PM
10-04-2001 03:42 PM
Re: TOOL FOR DISASTER RECOVERY
would using "Tom's Root and Boot Disk" be a valid
option for you? It is just a single floppy, but includes
networking, so you could then do a "rsh dd" to restore
the disk...
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 03:42 AM
10-05-2001 03:42 AM
Re: TOOL FOR DISASTER RECOVERY
There is a tool called partition image.
It is a tool for cold backup/recovery tool.
I am not sure which scsi cards are supported,though.
http://www.partimage.org/
enjoy
masanari iida
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2001 11:25 AM
10-05-2001 11:25 AM
Re: TOOL FOR DISASTER RECOVERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2001 05:11 AM
10-06-2001 05:11 AM
Re: TOOL FOR DISASTER RECOVERY
I have never heard about such a tool in OpenSource projects.
I know that companies that are specialized in Linux compute farms (clustering) have developed proprietary tools to rapidly deploy and install/recover linux boxes. But I'm not sure they are going to release these utilities in OpenSource community :-(
Currently, I'm trying to develop a tool based on a boot floppy and DDS tape.
When this works, the next step will be allowing the user to recover from NFS or SMBFS mount instead of DDS.
I had no plans to replace the floppy by the use of PXE or BOOTP/DHCP, because all PCs or Intel i386-based servers have a floppy drive. Therefore, it may be an interesting feature to eliminate the floppy drive and have a full network-based recovery or deployment solution.
I have no time these days to develop this tool, but if it was the case, here are the directions I would explore :
-> How to use the BIOS (setup) to be able to boot via the network.
-> If the BIOS is able to deal with bootp or dhcp, the next steps seem trivial : in the BOOTP or DHCP replies, you can specify a boot file that the BIOS will download (via TFTP) and use to boot up (this file is the linux kernel). Therefore, supposing that the kernel is compiled to have its root filesystem on NFS, the rest could be very simple.
-> If the BIOS is not able to understand BOOTP or DHCP protocols, then only PXE can be used. However, I don't have any information about that protocol. If I had to develop a recovery tool via Network, I would try to gather and read documentation about PXE.
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2001 05:32 AM
10-06-2001 05:32 AM
Re: TOOL FOR DISASTER RECOVERY
After having posted the previous reply, I made a little research on google.com and found the "etherboot" project on SourceForge.
It appears that the boot file returned via bootp/dhcp must have a pre-defined format.
The "etherboot" utility is a "rom code" to be flashed in a eprom and plugged into your network adapter in a socket especially designed for this.
The etherboot is then able to retrieve the kernel via bootp and behave as a PCI chip that have its own boot code (exactly like if you were booting from an SCSI adapter with its own BIOS).
To read further information :
http://etherboot.sourceforge.net/doc/html/devman-3.html
Good luck
Kodjo