<?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: Backing up Linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866202#M77889</link>
    <description>with tar you can have --exclude="" or -X &lt;FILE name=""&gt; options,,&lt;/FILE&gt;</description>
    <pubDate>Thu, 19 Dec 2002 07:44:45 GMT</pubDate>
    <dc:creator>Chakravarthi</dc:creator>
    <dc:date>2002-12-19T07:44:45Z</dc:date>
    <item>
      <title>Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866198#M77885</link>
      <description>Using SuSE Enterprise Server 7 for IA-32 on a&lt;BR /&gt;now HP ML530 system.  What would anyone suggest to use for backing up the file systems.&lt;BR /&gt;I've tried tar and it gets to the /proc directory, processing the file kore (I think) &lt;BR /&gt;gets and error, and then reboots.  No sorry, can't remember what the error message says.  I've looked through the Linux system here at HP Forums and don't find any topics about "backup" and Linux.  The OS has Amanda on it, but so far haven't figured it out.  Just looking for other opinions.</description>
      <pubDate>Tue, 17 Dec 2002 21:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866198#M77885</guid>
      <dc:creator>Charles Holland</dc:creator>
      <dc:date>2002-12-17T21:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866199#M77886</link>
      <description>There are plenty of Backup solutions for Linux, some of them free, and others that cost money.&lt;BR /&gt;&lt;BR /&gt;Things like Arkeia, Backup Edge, BRU are just a few of the commercial products available.&lt;BR /&gt;&lt;BR /&gt;Personally, I use "Backup Edge", and 'cpio' in custom written scripts.&lt;BR /&gt;&lt;BR /&gt;It all depends on the security you want (BE offers thigns like bit-level verify etc.), and how much you're willing to pay.&lt;BR /&gt;&lt;BR /&gt;With relation to the error you are getting using 'tar' however, you need to exclude the 'proc' file system (as it isn't real).  A simple '--exclude /proc' should suffice.</description>
      <pubDate>Tue, 17 Dec 2002 23:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866199#M77886</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-12-17T23:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866200#M77887</link>
      <description>Charles --&lt;BR /&gt;&lt;BR /&gt;The file /proc/kcore is a root-accessible-only map of system memory.  You'll notice it's the same size as all the physical memory installed in your system.&lt;BR /&gt;&lt;BR /&gt;As Stuart has said, you don't need to backup /proc -- it's a virtual file system which represents internal system states, process information, etc.  It's actually very nifty, but there's no user data there.  &lt;BR /&gt;&lt;BR /&gt;I would create a list of mountpoints you want to backup, then decide what value you place on the data in each.  If this is mission critical stuff, you may want to investigate a commercial product.  I've had a lot of experience with Legato's Networker product, which can run on a variety of platforms, including Linux, and from any of those platforms can backup a number of platforms, including Linux.  As for backup hardware -- a simple tape stacker should make your life a lot easier.&lt;BR /&gt;&lt;BR /&gt;If a manual tar process is fine, then create a work list and a simple script:&lt;BR /&gt;&lt;BR /&gt;Perhaps call your worklist /etc/backupworklist:&lt;BR /&gt;&lt;BR /&gt;/home&lt;BR /&gt;/etc&lt;BR /&gt;/var&lt;BR /&gt;/usr&lt;BR /&gt;whateverelseyouwant&lt;BR /&gt;&lt;BR /&gt;Then have a simple backup script:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;admin="your@email.address"&lt;BR /&gt;tapedev=/dev/st0&lt;BR /&gt;worklist=`cat /etc/backupworklist`&lt;BR /&gt;backuplog=/var/tmp/backup.log&lt;BR /&gt;date=`date`&lt;BR /&gt;&lt;BR /&gt;(tar cvpf $tapedev "$worklist" &amp;gt; $backuplog) &amp;amp;&amp;amp; mt -f $tapedev rewoffl&lt;BR /&gt;&lt;BR /&gt;mail -s "Backup log: $date" $admin &amp;lt; $backuplog&lt;BR /&gt;#end of script&lt;BR /&gt;&lt;BR /&gt;This is very, very rough (and, BTW, untested, I just typed it in the reply box - if you decide to try this out, please be careful).&lt;BR /&gt;&lt;BR /&gt;You'll notice that I used a lot of variables in the script -- by keeping the admin name, the tape device, the log, et al in variables, I can change them later without hunting through the listing, and without messing around in the heart of the script...&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Simon&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Dec 2002 14:49:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866200#M77887</guid>
      <dc:creator>Simon Galton</dc:creator>
      <dc:date>2002-12-18T14:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866201#M77888</link>
      <description>Oh, another BTW about that script:&lt;BR /&gt;&lt;BR /&gt;I used the "&amp;amp;&amp;amp;" construct -- what this does is only allows the command after the "&amp;amp;&amp;amp;" to run if the command before the "&amp;amp;&amp;amp;" exits successfully.&lt;BR /&gt;&lt;BR /&gt;So, if the tar fails, the tape will not rewind and eject from the drive.  If, however, the tar command works fine, the tape will be ejected and waiting.  This is a nice visual indicator of backup success... :)&lt;BR /&gt;&lt;BR /&gt;Simon</description>
      <pubDate>Wed, 18 Dec 2002 14:52:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866201#M77888</guid>
      <dc:creator>Simon Galton</dc:creator>
      <dc:date>2002-12-18T14:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866202#M77889</link>
      <description>with tar you can have --exclude="" or -X &lt;FILE name=""&gt; options,,&lt;/FILE&gt;</description>
      <pubDate>Thu, 19 Dec 2002 07:44:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866202#M77889</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2002-12-19T07:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866203#M77890</link>
      <description>Have a look at the &lt;A href="http://www.amanda.org" target="_blank"&gt;www.amanda.org&lt;/A&gt; project - very good gnu backup from the Univ of Maryland. Multiple machines, cycles, logs, you name it.</description>
      <pubDate>Thu, 19 Dec 2002 09:30:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866203#M77890</guid>
      <dc:creator>Tim Clarke</dc:creator>
      <dc:date>2002-12-19T09:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Backing up Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866204#M77891</link>
      <description>To all thank you.  Stewart thanks but trying to get by without purchasing.  Simon will explore the possibilities.  Did get the system to backup using tar had to specify it as &lt;BR /&gt;--exclude=proc  if I put it as /proc it didn't seem to work.  Need to just make it slicker now.  I had seen that parameter in the man page but I thought it only worked for files and not directories.  Gained knowledge.  Once the tar is in place I'll work on getting Amanda figured out.    Thanks to all.</description>
      <pubDate>Thu, 19 Dec 2002 21:06:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backing-up-linux/m-p/2866204#M77891</guid>
      <dc:creator>Charles Holland</dc:creator>
      <dc:date>2002-12-19T21:06:53Z</dc:date>
    </item>
  </channel>
</rss>

