<?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: mirror software and image software for suse 9 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036722#M29281</link>
    <description>Look at the docs on CD1 of SP3 - there are some 800 pages of info there.  Not sure if (software) root raid is supported on ia64, but it should be in the release notes or how-tos included with the docs.&lt;BR /&gt;&lt;BR /&gt;I know LILO was a bit finicky about root raid, not sure aboot elilo though.....&lt;BR /&gt;&lt;BR /&gt;Don</description>
    <pubDate>Thu, 19 Jul 2007 18:57:58 GMT</pubDate>
    <dc:creator>Don Vanco - Linux Ninja</dc:creator>
    <dc:date>2007-07-19T18:57:58Z</dc:date>
    <item>
      <title>mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036714#M29273</link>
      <description>Hi Guys,&lt;BR /&gt;We have two RX4640 that will be running SLES 9 S3 and will host DB2 database on the internal disks.&lt;BR /&gt;I am looking for mirror software that will provide same ease of use and capabilities as MirrorDisk/UX does for HPUX.&lt;BR /&gt;Also, I am looking for image software the will provide same ease of use and capabilities as IGNITE does for HPUX.&lt;BR /&gt;&lt;BR /&gt;I will appreciate answers from people that actually used the software’s under the same circumstances more or less and not just recommendation from the web (I can Google too you know …:c) ).&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;A.K.&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2007 15:43:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036714#M29273</guid>
      <dc:creator>A.K.</dc:creator>
      <dc:date>2007-07-12T15:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036715#M29274</link>
      <description>You can mirror disks with mdadm, newest versions of linux can mirror the data with LVM.&lt;BR /&gt;&lt;BR /&gt;You can use mondo rescue to do some kind of IGNITE UX.</description>
      <pubDate>Thu, 12 Jul 2007 17:06:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036715#M29274</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-07-12T17:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036716#M29275</link>
      <description>I don't know that it's quite to the level of IGNITE, but you can script something that call on boot in a "standard image".&lt;BR /&gt;&lt;BR /&gt;There are a number of ways to image a Linux server, from AutoYaST that's included in SLES (installing against a network based repository), to other tools like System Imager or CloneSys (see Google) - scripting the ignite-like functions is rather dependent on the release, but here's what Red Hat offers (and you should be able to replicate with relative ease on SuSE)&lt;BR /&gt;&lt;BR /&gt;As part of the boot, the rc.sysinit file looks in the root for a file named .unconfigured - if it finds it the server will run tools that are typically required to make a server unique. (the 'rhgb' bits relate to the Red Hat Graphical Boot)&lt;BR /&gt;&lt;BR /&gt;Here's the gist:&lt;BR /&gt;# Configure machine if necessary.&lt;BR /&gt;if [ -f /.unconfigured ]; then&lt;BR /&gt;    if [ -x /usr/bin/rhgb-client ] &amp;amp;&amp;amp; /usr/bin/rhgb-client --ping ; then&lt;BR /&gt;        chvt 1&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;    if [ -x /usr/bin/system-config-keyboard ]; then&lt;BR /&gt;        /usr/bin/system-config-keyboard&lt;BR /&gt;    fi&lt;BR /&gt;    if [ -x /usr/bin/passwd ]; then&lt;BR /&gt;        /usr/bin/passwd root&lt;BR /&gt;    fi&lt;BR /&gt;    if [ -x /usr/sbin/netconfig ]; then&lt;BR /&gt;        /usr/sbin/netconfig&lt;BR /&gt;    fi&lt;BR /&gt;    if [ -x /usr/sbin/timeconfig ]; then&lt;BR /&gt;        /usr/sbin/timeconfig&lt;BR /&gt;    fi&lt;BR /&gt;    if [ -x /usr/sbin/authconfig ]; then&lt;BR /&gt;        /usr/sbin/authconfig --nostart&lt;BR /&gt;    fi&lt;BR /&gt;    if [ -x /usr/sbin/ntsysv ]; then&lt;BR /&gt;        /usr/sbin/ntsysv --level 35&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;    # Reread in network configuration data.&lt;BR /&gt;    if [ -f /etc/sysconfig/network ]; then&lt;BR /&gt;        . /etc/sysconfig/network&lt;BR /&gt;&lt;BR /&gt;        # Reset the hostname.&lt;BR /&gt;        action $"Resetting hostname ${HOSTNAME}: " hostname ${HOSTNAME}&lt;BR /&gt;    fi&lt;BR /&gt;&lt;BR /&gt;    rm -f /.unconfigured&lt;BR /&gt;&lt;BR /&gt;    if [ -x /usr/bin/rhgb-client ] &amp;amp;&amp;amp; /usr/bin/rhgb-client --ping ; then&lt;BR /&gt;        chvt 8&lt;BR /&gt;    fi&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Once you get used to the tools in SuSE to change the base config data quickly, you might even find using mdadm and mirror drives as a viable alternative to cloning servers (I do it now with the hardware RAID card)&lt;BR /&gt;&lt;BR /&gt;Obviously, you'll need to take the DB2 installation into consideration and how its config requirements might affect your ability to image a system for redeployment under another personality.&lt;BR /&gt;&lt;BR /&gt;AutoYaST was rather lacking in SLES 9.  I don't know that it improved even in SP3.  It's far better in 10 and you could likely script a complete install (including DB2 with some scripting) -vs- an image, but of course that likely doesn't help you at this moment....&lt;BR /&gt;&lt;BR /&gt;Good luck -&lt;BR /&gt;Don&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2007 20:25:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036716#M29275</guid>
      <dc:creator>Don Vanco - Linux Ninja</dc:creator>
      <dc:date>2007-07-12T20:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036717#M29276</link>
      <description>Hello A.K,&lt;BR /&gt;&lt;BR /&gt;please do not hurt yourself in using the md driver. Buy the HP SmartArray controller for your system and do the RAID in HW. &lt;BR /&gt;&lt;BR /&gt;About 2,5 years ago I had been evaluating like you a solution for doing the same things like IgniteUX under Linux. Result had beent there is no product which could do that - HPUX is sometimes no bad environment ;-) - one that did come close in some aspects had been Mondo Rescue.  &lt;BR /&gt;&lt;BR /&gt;Only problem had been it was not ready for the Integrity platform. Since then Bruno did work on it and there should now support for IA64 and EFI. Please have a look at:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.mondorescue.org/" target="_blank"&gt;http://www.mondorescue.org/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Bye&lt;BR /&gt;&lt;BR /&gt;Oli &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jul 2007 03:01:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036717#M29276</guid>
      <dc:creator>Oliver Schwank</dc:creator>
      <dc:date>2007-07-13T03:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036718#M29277</link>
      <description>Storix SBAdmin for recovery.&lt;BR /&gt;&lt;A href="http://www.storix.com" target="_blank"&gt;www.storix.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I use it for SLES 9 on x86.&lt;BR /&gt;Don't know if it supports Itanium.&lt;BR /&gt;&lt;BR /&gt;They seem to have a very knowledgeable support staff.&lt;BR /&gt;&lt;BR /&gt;Ted</description>
      <pubDate>Fri, 13 Jul 2007 09:27:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036718#M29277</guid>
      <dc:creator>Theodore Pardike</dc:creator>
      <dc:date>2007-07-13T09:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036719#M29278</link>
      <description>I also was looking quite some time for a simple backup/restore tool for Linux. A few weeks ago I stumbled across the following:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mkcdrec.ota.be/" target="_blank"&gt;http://mkcdrec.ota.be/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Looks quite promising to me.&lt;BR /&gt;&lt;BR /&gt;- Command line driven&lt;BR /&gt;- Supports backup media: Tape, CD, DVD&lt;BR /&gt;- CD/DVD medias are bootable (it also claims to support OBDR [One Button Disaster Recovers] for tapes)&lt;BR /&gt;- Boot image is based on your current kernel, this includes all required drivers for special hardware (RAID controllers, etc)&lt;BR /&gt;- full support for SW Raid&lt;BR /&gt;- and more&lt;BR /&gt;&lt;BR /&gt;Backup is based on TAR archives with compression and splitting across multiple medias.The restoration process can be fully automatic or with interaction of the user. This allows e.g. restoring only a single partition.&lt;BR /&gt;&lt;BR /&gt;/Thomas&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:30:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036719#M29278</guid>
      <dc:creator>Thomas Ries</dc:creator>
      <dc:date>2007-07-16T04:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036720#M29279</link>
      <description>@Thomas Ries: you can optionally take mkCDrec (which is great) even a step further by integrating it in existing backup solutions using ReaR (also from Gratien D'haese &lt;A href="http://rear.sourceforge.net/)" target="_blank"&gt;http://rear.sourceforge.net/)&lt;/A&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:46:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036720#M29279</guid>
      <dc:creator>Van den Broeck Tijl</dc:creator>
      <dc:date>2007-07-16T04:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036721#M29280</link>
      <description>Thanks a lot for all the responses , I will assign point at a later time.&lt;BR /&gt;I see a lot of responses for imaging but not too many for mirroring.&lt;BR /&gt;Does anyone knows if soft raid (see link below )&lt;BR /&gt;&lt;A href="http://www-uxsup.csx.cam.ac.uk/pub/doc/suse/suse9.3/suselinux-adminguide_en/sec.yast2.system.raid.html" target="_blank"&gt;http://www-uxsup.csx.cam.ac.uk/pub/doc/suse/suse9.3/suselinux-adminguide_en/sec.yast2.system.raid.html&lt;/A&gt;&lt;BR /&gt;will work on the root disks in case one fails(will I be able to boot from secondary).&lt;BR /&gt;Also, seems like mondorescue is recommended by all(almost), however, I was unable to find the version for ia64.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;A.K.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Jul 2007 16:12:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036721#M29280</guid>
      <dc:creator>A.K.</dc:creator>
      <dc:date>2007-07-19T16:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036722#M29281</link>
      <description>Look at the docs on CD1 of SP3 - there are some 800 pages of info there.  Not sure if (software) root raid is supported on ia64, but it should be in the release notes or how-tos included with the docs.&lt;BR /&gt;&lt;BR /&gt;I know LILO was a bit finicky about root raid, not sure aboot elilo though.....&lt;BR /&gt;&lt;BR /&gt;Don</description>
      <pubDate>Thu, 19 Jul 2007 18:57:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036722#M29281</guid>
      <dc:creator>Don Vanco - Linux Ninja</dc:creator>
      <dc:date>2007-07-19T18:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036723#M29282</link>
      <description>The CD documentation is actually the link I posted , same thing no reference to root disk mirroring .&lt;BR /&gt;I would like to explore the HP SmartArray controller option mention by Oliver.&lt;BR /&gt; Does anyone knows the specific model number for the RX4640 ?&lt;BR /&gt;Thanks,&lt;BR /&gt;A.K.</description>
      <pubDate>Fri, 20 Jul 2007 13:19:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036723#M29282</guid>
      <dc:creator>A.K.</dc:creator>
      <dc:date>2007-07-20T13:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: mirror software and image software for suse 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036724#M29283</link>
      <description>Hello A.K,&lt;BR /&gt;&lt;BR /&gt;this one should be the correct one:&lt;BR /&gt;Smart Array 6402 128MB dual-channel Ultra320 SCSI RAID adapter card A9890A &lt;BR /&gt;&lt;BR /&gt;Bye &lt;BR /&gt;&lt;BR /&gt;Oli</description>
      <pubDate>Sun, 22 Jul 2007 13:34:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mirror-software-and-image-software-for-suse-9/m-p/4036724#M29283</guid>
      <dc:creator>Oliver Schwank</dc:creator>
      <dc:date>2007-07-22T13:34:09Z</dc:date>
    </item>
  </channel>
</rss>

