<?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: changing boot disk while within current OS in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707331#M59600</link>
    <description>setboot&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
    <pubDate>Fri, 19 Apr 2002 15:44:24 GMT</pubDate>
    <dc:creator>John Palmer</dc:creator>
    <dc:date>2002-04-19T15:44:24Z</dc:date>
    <item>
      <title>changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707330#M59599</link>
      <description>Is there a way I can tell the HP OS to boot a different disk the next time it is booted....without having to change the boot prom??&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All i want to do is tell the HP OS that is booted on the PRIMARY path to boot to the SECONDARY path the next time it is booted.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanx for the help.</description>
      <pubDate>Fri, 19 Apr 2002 15:42:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707330#M59599</guid>
      <dc:creator>Joshua Leckner_1</dc:creator>
      <dc:date>2002-04-19T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707331#M59600</link>
      <description>setboot&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Fri, 19 Apr 2002 15:44:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707331#M59600</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2002-04-19T15:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707332#M59601</link>
      <description># setboot&lt;BR /&gt;===&amp;gt; displays the current boot path&lt;BR /&gt;&lt;BR /&gt;To change ..&lt;BR /&gt;&lt;BR /&gt;# setboot -p &lt;PATH-OF-PRI-BOOTDISK&gt;&lt;BR /&gt;&lt;BR /&gt;# setboot -a &lt;PATH-OF-ALT-BOOTDISK&gt;&lt;/PATH-OF-ALT-BOOTDISK&gt;&lt;/PATH-OF-PRI-BOOTDISK&gt;</description>
      <pubDate>Fri, 19 Apr 2002 15:44:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707332#M59601</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-04-19T15:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707333#M59602</link>
      <description>setboot -p primary -a alternate</description>
      <pubDate>Fri, 19 Apr 2002 15:47:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707333#M59602</guid>
      <dc:creator>hpuxrox</dc:creator>
      <dc:date>2002-04-19T15:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707334#M59603</link>
      <description>Hi&lt;BR /&gt;Following is small script I use to change boot sequence on next boot.&lt;BR /&gt;##------------------------------&lt;BR /&gt;#&lt;BR /&gt;# Use this script to change the boot sequence # using setboot command.&lt;BR /&gt;#&lt;BR /&gt;HP=`hostname`&lt;BR /&gt;BOOT_PATH_LOG=/home/system/Logs/${HP}_set_bootlog&lt;BR /&gt;&lt;BR /&gt;exec 2&amp;gt;&amp;amp;1 &amp;gt;&amp;gt;${BOOT_PATH_LOG}&lt;BR /&gt;echo "##--------------------------##"&lt;BR /&gt;date&lt;BR /&gt;echo "#-------- Check boot Paths before change"&lt;BR /&gt;setboot&lt;BR /&gt;&lt;BR /&gt;##check  pri/alt paths&lt;BR /&gt;PRI_PATH=`setboot |grep Pri |awk '{print $4}'`&lt;BR /&gt;ALT_PATH=`setboot |grep Alt |awk '{print $4}'`&lt;BR /&gt;&lt;BR /&gt;echo "\nCurrent Primary Path is ${PRI_PATH} "&lt;BR /&gt;echo "Current Alternate Path is ${ALT_PATH} "&lt;BR /&gt;&lt;BR /&gt;## Change Primary and Alternate Paths&lt;BR /&gt;#set primary path&lt;BR /&gt;setboot -p ${ALT_PATH}&lt;BR /&gt;&lt;BR /&gt;#set alternate path&lt;BR /&gt;setboot -a ${PRI_PATH}&lt;BR /&gt;&lt;BR /&gt;echo "\n#-- Check boot Paths after change"&lt;BR /&gt;setboot&lt;BR /&gt;date&lt;BR /&gt;echo "##-------------------------##"&lt;BR /&gt;&lt;BR /&gt;##-----&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Prashant Deshpande.&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Apr 2002 16:29:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707334#M59603</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2002-04-19T16:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: changing boot disk while within current OS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707335#M59604</link>
      <description>Thank you all.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I settled for the script.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanx again.</description>
      <pubDate>Fri, 19 Apr 2002 16:49:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-boot-disk-while-within-current-os/m-p/2707335#M59604</guid>
      <dc:creator>Joshua Leckner_1</dc:creator>
      <dc:date>2002-04-19T16:49:15Z</dc:date>
    </item>
  </channel>
</rss>

