<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Backup of linux server in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027810#M48217</link>
    <description>Well,there are commercial tools like Symantec Ghost for Linux and Acronis TrueImage that give you recovery option. &lt;BR /&gt;&lt;BR /&gt;Otherwise,with more manual work you can use partimage with SystemRescueCD : &lt;BR /&gt;&lt;A href="http://www.sysresccd.org/Main_Page" target="_blank"&gt;http://www.sysresccd.org/Main_Page&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So you can back up your DB with backupexec and do system image with partimage.</description>
    <pubDate>Mon, 12 Feb 2007 03:59:31 GMT</pubDate>
    <dc:creator>Zeev Schultz</dc:creator>
    <dc:date>2007-02-12T03:59:31Z</dc:date>
    <item>
      <title>Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027809#M48216</link>
      <description>&lt;BR /&gt;Hello...&lt;BR /&gt;&lt;BR /&gt;I have four RHEL 4.0 servers and oracle is running on that.Am configured another windows server as backup server using symantec backup exec and started to take the back up of oracle database using remote agents for linux.&lt;BR /&gt;Now i want to take the back up of linux servers (I mean OS backup).how can i do that.&lt;BR /&gt;&lt;BR /&gt;using symantec backup exec i can take the backup of "/" ,but am not sure whether it will be successfull while restoring and i cant restore the server from backup in case of system crash...&lt;BR /&gt;&lt;BR /&gt;Is there any other way to take the backup of linux servers and to restore it directly from media..&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Feb 2007 01:36:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027809#M48216</guid>
      <dc:creator>nasmel</dc:creator>
      <dc:date>2007-02-12T01:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027810#M48217</link>
      <description>Well,there are commercial tools like Symantec Ghost for Linux and Acronis TrueImage that give you recovery option. &lt;BR /&gt;&lt;BR /&gt;Otherwise,with more manual work you can use partimage with SystemRescueCD : &lt;BR /&gt;&lt;A href="http://www.sysresccd.org/Main_Page" target="_blank"&gt;http://www.sysresccd.org/Main_Page&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So you can back up your DB with backupexec and do system image with partimage.</description>
      <pubDate>Mon, 12 Feb 2007 03:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027810#M48217</guid>
      <dc:creator>Zeev Schultz</dc:creator>
      <dc:date>2007-02-12T03:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027811#M48218</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;while in the "old" days one usually merely had taken a dump by the copy and change command dd from the partitions of a Linux box (which still  would work), these days there are more sophisticated tools for a bare-metal recovery.&lt;BR /&gt;However the dump on its own wouldn't be enough.&lt;BR /&gt;First of all it is crucial to save the partition table of your OS disk(s).&lt;BR /&gt;I even would recommend sending an fdisk -l on the disk device to a printer and tuck it away in the folder of your other hard copy files of the respective host.&lt;BR /&gt;&lt;BR /&gt;Before you take the dump you should redirect the output of an "sfdisk -d /dev/[hs]d[ab]" (take the device that applies to your installation) into a file that you could access from e.g. when you boot from a rescue CD (note that the RedHat bootable installation CD has a boot option "linux rescue"),&lt;BR /&gt;maybe some nfs or ftp server or even floppy, usb stick etc. would do?&lt;BR /&gt;&lt;BR /&gt;You could then create the partition table on a new disk by redirecting the stdin from an sfdisk command on the new disk's device file from your back up file of the partition table.&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;let's assume you mounted a floppy to /media/floppy and your OS is installed on the first SCSI disk.&lt;BR /&gt;&lt;BR /&gt;# sfdisk -d /dev/sda &amp;gt; /media/floppy/sfdisk-d_dev_sda_$(uname -n).txt&lt;BR /&gt;&lt;BR /&gt;In rescue mode you could mount the floppy and write the backed up partition table to your new disk.&lt;BR /&gt;&lt;BR /&gt;# mkdir -p /mnt/floppy&lt;BR /&gt;# mount /dev/fd0 /mnt/floppy&lt;BR /&gt;# sfdisk /dev/sda &amp;lt; /mnt/floppy/sfdisk-d_dev_sda_hostname.txt&lt;BR /&gt;# sfdisk -l /dev/sda&lt;BR /&gt;&lt;BR /&gt;You could also dump and save the MBRs of your OS disk and of its partitions.&lt;BR /&gt;But this is usually not necessary because the MBRs would be part of the total dump (and for extended partitions that you might have you already have taken above mentioned sfdisk dump).&lt;BR /&gt;However, just to be on the safe side you could write to the same floppy (or other place) that holds the partition table's backup.&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/sda of=/media/floppy/mbr_dev_sda.$(uname -n) bs=512 count=1&lt;BR /&gt;&lt;BR /&gt;For taking the whole backup/dump there exist  several better ways than good old dd.&lt;BR /&gt;&lt;BR /&gt;I for instance liked the Partimage tool.&lt;BR /&gt;&lt;A href="http://www.partimage.org/Main_Page" target="_blank"&gt;http://www.partimage.org/Main_Page&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It has an interactive UI as well as a CLI which lends itself to scripting.&lt;BR /&gt;The nice thing is that you can even set up a partimage server that can (sufficient attached disk storage given) host whole backup dumps from several Linux hosts and can be accessed via network.&lt;BR /&gt;&lt;BR /&gt;Just read the few pages of its manual.&lt;BR /&gt;It's pretty straight forward.&lt;BR /&gt;&lt;BR /&gt;Apart from Partimage there are other solutions.&lt;BR /&gt;&lt;BR /&gt;One with the non-technical user im mind &lt;BR /&gt;(it thus offers a GUI similar to Norton's Ghost) is called g4l (ghost for linux).&lt;BR /&gt;&lt;A href="http://sourceforge.net/projects/g4l" target="_blank"&gt;http://sourceforge.net/projects/g4l&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;A more technical approach is followed by&lt;BR /&gt;SystemImager which has its roots I assume in the Linux cluster projects.&lt;BR /&gt;With SI you therefore can create Golden Images like known from HP-UX Ignite to rapidly deploy many nodes from such an image.&lt;BR /&gt;&lt;A href="http://sourceforge.net/projects/systemimager/" target="_blank"&gt;http://sourceforge.net/projects/systemimager/&lt;/A&gt;&lt;BR /&gt;If I remember correctly, along this line are also tools like SystemConfigurator, SystemInstaller etc.&lt;BR /&gt;&lt;BR /&gt;Apart from those there are many more tools better suited than dd.&lt;BR /&gt;I would think that the Complete Backup and Recovery Howto from the LDP should list a few other options:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://tldp.org/HOWTO/Linux-Complete-Backup-and-Recovery-HOWTO/" target="_blank"&gt;http://tldp.org/HOWTO/Linux-Complete-Backup-and-Recovery-HOWTO/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Feb 2007 04:46:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027811#M48218</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2007-02-12T04:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027812#M48219</link>
      <description>unfortunately backup exec has no ds option for remote linux servers (only win32).&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Feb 2007 04:47:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027812#M48219</guid>
      <dc:creator>Andrea Rossi</dc:creator>
      <dc:date>2007-02-13T04:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027813#M48220</link>
      <description>i configured backup exec to take the backup of / excpt oracle files.In the case of system crash ,is it possible to &lt;BR /&gt;reinstall my linux servers and to overwrite the / ...will it work ?&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Feb 2007 08:04:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027813#M48220</guid>
      <dc:creator>nasmel</dc:creator>
      <dc:date>2007-02-13T08:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Backup of linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027814#M48221</link>
      <description>thanks</description>
      <pubDate>Sat, 17 Feb 2007 11:00:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-of-linux-server/m-p/5027814#M48221</guid>
      <dc:creator>nasmel</dc:creator>
      <dc:date>2007-02-17T11:00:49Z</dc:date>
    </item>
  </channel>
</rss>

