<?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: Adding 2 more DISK drivers in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6023599#M483797</link>
    <description>&lt;P&gt;1) &amp;nbsp;After adding drives you should do an 'ioscan -fnC disk' to verify that the new disks are visible to the system. &amp;nbsp;You may also need to do an 'insf -C disk' to create device files for the new drives.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Your 'dd' command will create a backup. &amp;nbsp;Whether it is appropriate or not is entirely up to you. &amp;nbsp;To make the backup run a bit faster I would add a 'bs=1024k' so you will read/write in 1 MB blocks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) You could add that to crontab, yes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, my personal opinion is that there are better ways to do backups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I would try to do in your situation:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Keep the 2 new disks. &amp;nbsp;You need these.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Try to acquire the MirrorDisk/UX software if you don't already have it. &amp;nbsp;This will allow you to mirror you OS disk to one of the new disks, and also mirror you application disk to the other new disk. &amp;nbsp;As your system stands right now, if one of the disks goes bad you are entirely down. &amp;nbsp;Even if you do your 'dd' backups, your system will be down if a disk goes bad. &amp;nbsp;Mirroring will at least allow you to to continue running if a disk goes bad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Acquire a tape drive for the system. &amp;nbsp;This will allow you to do 2 additional things:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3a) Use Ignite/UX to create a bootable backup tape of VG00. &amp;nbsp;This will allow you to restore if your system gets completedly messed up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3b) Use fbackup to backup your application LV. &amp;nbsp;This way, you have an easy way to restore data if something happens to the application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
    <pubDate>Mon, 08 Apr 2013 13:58:20 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2013-04-08T13:58:20Z</dc:date>
    <item>
      <title>Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6022687#M483792</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On HP-UX, B.11.11 I'm using 2 disks as follow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Holds the OS (B.11.11)&lt;/P&gt;&lt;P&gt;2. Holds the application (LVM - the whole disk is 1 LV)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In order to create backup for both disks I would like to add 2 more disks to the array.&lt;/P&gt;&lt;P&gt;Then, run on each one of them backup with the following command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# dd if=/dev/rdsk/cXtYdZ of=/dev/rdsk/cXtYdZ&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. After attaching/adding the the disks to the drivers, do I need to use any command to connect them to the system?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Does the command above correct? Will it create appropriate backup?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. I am planning to insert the command to the crontab. Is it fine?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Yali&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2013 12:01:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6022687#M483792</guid>
      <dc:creator>Yaroki</dc:creator>
      <dc:date>2013-04-07T12:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6023599#M483797</link>
      <description>&lt;P&gt;1) &amp;nbsp;After adding drives you should do an 'ioscan -fnC disk' to verify that the new disks are visible to the system. &amp;nbsp;You may also need to do an 'insf -C disk' to create device files for the new drives.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Your 'dd' command will create a backup. &amp;nbsp;Whether it is appropriate or not is entirely up to you. &amp;nbsp;To make the backup run a bit faster I would add a 'bs=1024k' so you will read/write in 1 MB blocks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) You could add that to crontab, yes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, my personal opinion is that there are better ways to do backups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I would try to do in your situation:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Keep the 2 new disks. &amp;nbsp;You need these.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Try to acquire the MirrorDisk/UX software if you don't already have it. &amp;nbsp;This will allow you to mirror you OS disk to one of the new disks, and also mirror you application disk to the other new disk. &amp;nbsp;As your system stands right now, if one of the disks goes bad you are entirely down. &amp;nbsp;Even if you do your 'dd' backups, your system will be down if a disk goes bad. &amp;nbsp;Mirroring will at least allow you to to continue running if a disk goes bad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Acquire a tape drive for the system. &amp;nbsp;This will allow you to do 2 additional things:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3a) Use Ignite/UX to create a bootable backup tape of VG00. &amp;nbsp;This will allow you to restore if your system gets completedly messed up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3b) Use fbackup to backup your application LV. &amp;nbsp;This way, you have an easy way to restore data if something happens to the application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2013 13:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6023599#M483797</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2013-04-08T13:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028831#M483830</link>
      <description>&lt;P&gt;Thank you very much for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I accept your request for mirroring.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;To make the backup run a bit faster I would add a 'bs=1024k' so you will read/write in 1 MB blocks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you mean like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# dd if=/dev/rdsk/cXtYdZ of=/dev/cXtYdZ bs=1024k&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2) Try to acquire the MirrorDisk/UX software. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I don't have it, so can I download it from HP or other site for free or should I purchase it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2013 07:53:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028831#M483830</guid>
      <dc:creator>Yaroki</dc:creator>
      <dc:date>2013-04-14T07:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028853#M483831</link>
      <description>&lt;P&gt;&amp;gt;Do you mean like this:&amp;nbsp; dd if=/dev/rdsk/cXtYdZ of=/dev/cXtYdZ bs=1024k&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes but rdsk on both sides.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;gt;2) Try to acquire the MirrorDisk/UX software.&amp;nbsp; should I purchase it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You have to purchase it.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2013 10:21:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028853#M483831</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-04-14T10:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028859#M483832</link>
      <description>&lt;P&gt;Hello Dennis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I mean, it is not part of the OS on B.11.11?\&lt;/P&gt;&lt;P&gt;# swlist -l bundle "*mirror*" gives nothing...&lt;/P&gt;&lt;P&gt;I have a contract support with HP for software updates.&lt;/P&gt;&lt;P&gt;Should HP provide it as part of the contract?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2013 10:41:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028859#M483832</guid>
      <dc:creator>Yaroki</dc:creator>
      <dc:date>2013-04-14T10:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding 2 more DISK drivers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028961#M483833</link>
      <description>&lt;P&gt;&amp;gt;I mean, it is not part of the OS on B.11.11?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It might be, depending on what OE you have and what OS version.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;swlist -l bundle "*mirror*" gives nothing...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This would only work if "mirror" was in all lower case.&amp;nbsp; Try:&lt;/P&gt;&lt;P&gt;swlist -l bundle | grep -i mirror&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;Should HP provide it as part of the contract?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, you must first purchase it before you get support.&amp;nbsp; See:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://h30499.www3.hp.com/t5/LVM-and-VxVM/How-to-mirror-a-normal-volumegroup/m-p/5991609"&gt;http://h30499.www3.hp.com/t5/LVM-and-VxVM/How-to-mirror-a-normal-volumegroup/m-p/5991609&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://h30499.www3.hp.com/t5/System-Administration/HPUX-11i-How-do-I-get-mirroring-software/m-p/4933134"&gt;http://h30499.www3.hp.com/t5/System-Administration/HPUX-11i-How-do-I-get-mirroring-software/m-p/4933134&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2013 12:04:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-2-more-disk-drivers/m-p/6028961#M483833</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-04-14T12:04:28Z</dc:date>
    </item>
  </channel>
</rss>

