<?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: replicate root disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043231#M134804</link>
    <description>dd should work (dd if=/dev/rdsk/c0t2d0 of=/dev/rdsk/c2t2d0 bs=1024k), but it is not a good command for placing boot utilities on a disk, it is not reliable for creating BDRA structures under an LVM. I recommend to use copyutil which comes with HPUX diag CD.  &lt;BR /&gt;And I think the best way to replicate root disk is mirroring the root disk, or to use make_tape_recovery to clone the system.&lt;BR /&gt;</description>
    <pubDate>Thu, 07 Aug 2003 02:54:32 GMT</pubDate>
    <dc:creator>twang</dc:creator>
    <dc:date>2003-08-07T02:54:32Z</dc:date>
    <item>
      <title>replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043225#M134798</link>
      <description>is there any other way to replicate the root disk without using the mirroring method??</description>
      <pubDate>Wed, 06 Aug 2003 19:42:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043225#M134798</guid>
      <dc:creator>hi_5</dc:creator>
      <dc:date>2003-08-06T19:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043226#M134799</link>
      <description>hi hi.&lt;BR /&gt; &lt;BR /&gt;You can use the dd command. Check the man page.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 06 Aug 2003 19:44:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043226#M134799</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-06T19:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043227#M134800</link>
      <description>I've used the dd command to clone systems, &lt;BR /&gt;&lt;BR /&gt;dd if= old disk device name of= new disk device name&lt;BR /&gt;&lt;BR /&gt;start it, go home and tomorrow you have another system...</description>
      <pubDate>Wed, 06 Aug 2003 19:47:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043227#M134800</guid>
      <dc:creator>doug mielke</dc:creator>
      <dc:date>2003-08-06T19:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043228#M134801</link>
      <description>Yes. If you are using identically sized disks then you can simply dd from one drive to the other.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;src=/dev/rdsk/c0t6d0&lt;BR /&gt;DEST=/dev/rdsk/c1t5d0&lt;BR /&gt;BS=256k&lt;BR /&gt;&lt;BR /&gt;dd if=${SRC} of=${DEST} bs=256k&lt;BR /&gt;&lt;BR /&gt;You should do this while the system is relatively quiet. Because the filesystems are not unmounted, if you attempt to use the copy as a boot disk, an fsck will be needed and automatically run but I've never had one of these to fail. I do this on my servers each weekend as a 'lifeboat'. If the boot drive fails, I can simply remove it and insert the 'lifeboat' in the boot slot; boot; and all is well. I do this IN ADDITION to mirroring because the lifeboat protects you from two things that mirrors do not: 1) Your own stupidity (e.g. rm -r * .tmp) 2) really, really bad patches.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Aug 2003 19:50:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043228#M134801</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-08-06T19:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043229#M134802</link>
      <description>..and, don't get the dd if= and of= commands backwards. It wont complain while it destoys your rood disk, even if it's with a zero byte file.</description>
      <pubDate>Wed, 06 Aug 2003 19:53:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043229#M134802</guid>
      <dc:creator>doug mielke</dc:creator>
      <dc:date>2003-08-06T19:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043230#M134803</link>
      <description>You can use the dd command:&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/rdsk/current_root_disk of=/dev/rdsk/duplicate_root_disk bs=1024k&lt;BR /&gt;&lt;BR /&gt;the option bs=1024k speeds up the copy much faster.&lt;BR /&gt;&lt;BR /&gt;Hai</description>
      <pubDate>Wed, 06 Aug 2003 19:54:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043230#M134803</guid>
      <dc:creator>Hai Nguyen_1</dc:creator>
      <dc:date>2003-08-06T19:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043231#M134804</link>
      <description>dd should work (dd if=/dev/rdsk/c0t2d0 of=/dev/rdsk/c2t2d0 bs=1024k), but it is not a good command for placing boot utilities on a disk, it is not reliable for creating BDRA structures under an LVM. I recommend to use copyutil which comes with HPUX diag CD.  &lt;BR /&gt;And I think the best way to replicate root disk is mirroring the root disk, or to use make_tape_recovery to clone the system.&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Aug 2003 02:54:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043231#M134804</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-08-07T02:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: replicate root disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043232#M134805</link>
      <description>Hi ,&lt;BR /&gt;  Doug ,your tip is very-very important.dd - simple command but if get it wrong could destroy you server. &lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;mB</description>
      <pubDate>Thu, 07 Aug 2003 05:13:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/replicate-root-disk/m-p/3043232#M134805</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2003-08-07T05:13:29Z</dc:date>
    </item>
  </channel>
</rss>

