<?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 and restore on Linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045069#M76293</link>
    <description>Hi there.&lt;BR /&gt;What about the good old cpio ?&lt;BR /&gt;&lt;BR /&gt;find / -depth -print | cpio -ocvB &amp;gt; /dev/rmt/0m   2&amp;gt;&amp;gt; logfile &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
    <pubDate>Mon, 11 Aug 2003 04:56:31 GMT</pubDate>
    <dc:creator>Alexander M. Ermes</dc:creator>
    <dc:date>2003-08-11T04:56:31Z</dc:date>
    <item>
      <title>Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045062#M76286</link>
      <description>I would like to know what the standard backup- and restore tools are for Red Hat AS 2.1. For our HP-UX servers we use ignite for OS-backup and fbackup for the daily backup. What are the comparable tools for Red Hat?</description>
      <pubDate>Fri, 08 Aug 2003 12:42:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045062#M76286</guid>
      <dc:creator>Pieter_5</dc:creator>
      <dc:date>2003-08-08T12:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045063#M76287</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Have a look here, you'll find several commands that will suit your needs, even if they are not exactly as easy and elegant as the *backup from HP UX :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.europe.redhat.com/documentation/rhl9/rhl-sap-en-9/s1-disaster-rhlspec.php3" target="_blank"&gt;http://www.europe.redhat.com/documentation/rhl9/rhl-sap-en-9/s1-disaster-rhlspec.php3&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Fri, 08 Aug 2003 12:57:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045063#M76287</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-08-08T12:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045064#M76288</link>
      <description>We use Mondo it is free. It will give you ignite like functionality.&lt;BR /&gt;&lt;BR /&gt;You can boot off of a floppy and backup/restore to tape.&lt;BR /&gt;&lt;BR /&gt;You can restore one file or boot off the floppy and restore the entire OS. If you have dual boot it will even restore the ntfs partion. &lt;BR /&gt;&lt;BR /&gt;You have to be running Linux to restore the ntfs partion then boot into MS.</description>
      <pubDate>Fri, 08 Aug 2003 13:39:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045064#M76288</guid>
      <dc:creator>Krishna Prasad</dc:creator>
      <dc:date>2003-08-08T13:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045065#M76289</link>
      <description>amanda is on the distrubution cd's and can be installed.&lt;BR /&gt;&lt;BR /&gt;mondo is the equivalent of HP-UX Ignite.&lt;BR /&gt;&lt;BR /&gt;I hope on your HP-UX boxes you make_tape_recovery once in a while, because fbackup is not enough to recover a system with a boot or lif problem.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 08 Aug 2003 15:13:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045065#M76289</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-08T15:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045066#M76290</link>
      <description>Linux Backup and Restore&lt;BR /&gt;------------------------&lt;BR /&gt;Using tar&lt;BR /&gt;- used for creating archive files&lt;BR /&gt;- option:&lt;BR /&gt;  c create archive&lt;BR /&gt;  x extract file from archive&lt;BR /&gt;  t view content of archive&lt;BR /&gt;  j compress archive with bzip2&lt;BR /&gt;  z compress archive with gzip&lt;BR /&gt;- example&lt;BR /&gt;  make archive + gzip compression:&lt;BR /&gt;  # tar cvzf /var/tmp/boot.tgz /boot&lt;BR /&gt;  uncompress archive&lt;BR /&gt;  # tar tf /var/tmp/boot.tar&lt;BR /&gt;  extract files into a temp location:&lt;BR /&gt;  # mkdir /tmp/untarred; cd /tmp/untarred&lt;BR /&gt;  # tar xvf /var/tmp/boot.tar&lt;BR /&gt;  # ls /tmp/untarred/boot&lt;BR /&gt;&lt;BR /&gt;Using dump/restore&lt;BR /&gt;- backup/restore ext2/3 filesystem&lt;BR /&gt;- support full and incremental backups&lt;BR /&gt;eg.&lt;BR /&gt;# dump -u -f &lt;BACKUP-DEV&gt; &lt;PARTITION&gt;&lt;BR /&gt;# restore -rf &lt;BACKUP-DEV&gt;&lt;BR /&gt;&lt;/BACKUP-DEV&gt;&lt;/PARTITION&gt;&lt;/BACKUP-DEV&gt;</description>
      <pubDate>Fri, 08 Aug 2003 15:29:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045066#M76290</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-08-08T15:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045067#M76291</link>
      <description>I use Dump and Restore I have developped a tailord solution that meet my needs and does it all from crontab (full,weekly,dayly) it does it all at night in single user mode to tape.&lt;BR /&gt;&lt;BR /&gt;I do also use mondo/mindi to CD-RW once in a while for archive.&lt;BR /&gt;&lt;BR /&gt;Also use interactively gnutar very often... I find this more general purpose &lt;BR /&gt;&lt;BR /&gt;But realy it all depend on the ganularity you need for your enviroment.&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 09 Aug 2003 06:50:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045067#M76291</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2003-08-09T06:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045068#M76292</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;we use arkeia and i'm very satisfied. It can run on almost any platform and the interface is very good and stable.&lt;BR /&gt;&lt;BR /&gt;Take a look &lt;A href="http://www.arkeia.com/" target="_blank"&gt;http://www.arkeia.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;JP</description>
      <pubDate>Sun, 10 Aug 2003 01:53:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045068#M76292</guid>
      <dc:creator>Jean-Pierre Denis</dc:creator>
      <dc:date>2003-08-10T01:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045069#M76293</link>
      <description>Hi there.&lt;BR /&gt;What about the good old cpio ?&lt;BR /&gt;&lt;BR /&gt;find / -depth -print | cpio -ocvB &amp;gt; /dev/rmt/0m   2&amp;gt;&amp;gt; logfile &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
      <pubDate>Mon, 11 Aug 2003 04:56:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045069#M76293</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2003-08-11T04:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045070#M76294</link>
      <description>HP's own data protector/omniback also works on linux. the standard commands for backup on linux are tar and dump.&lt;BR /&gt;for disaster recovery, i can only recommend mondo.&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Aug 2003 05:39:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-on-linux/m-p/3045070#M76294</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2003-08-11T05:39:17Z</dc:date>
    </item>
  </channel>
</rss>

