<?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: OS BACKUP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427527#M655856</link>
    <description>Your statement regarding power failures in your post strikes up some concern in my mind.  This suggests that you have no power protection on your system.  This is not a good idea on any virtual memory machine (most every machine these days).  If your talking about a  server, you are really setting yourself up for disaster.  Backups are only good to the time of the last backup - best case.  This assumes a lot of things like everything is synchronized at the time of backup (and maintained that way during the backup) and that everything is in fact backed up.  &lt;BR /&gt;&lt;BR /&gt;The bottom line here is that investing in a UPS is cheap insurance.  What is the cost of the machine downtime?  What is the cost of the data that may be lost?  On a workstation, you can do it for less than $200(US).  For larger machines there is all kinds of used equipment out there very reasonably priced.   &lt;BR /&gt;&lt;BR /&gt;Maybe this is a little off topic, but I thought I would bring it up in case it has not been considered.</description>
    <pubDate>Tue, 27 Jun 2000 14:48:05 GMT</pubDate>
    <dc:creator>Tim Malnati</dc:creator>
    <dc:date>2000-06-27T14:48:05Z</dc:date>
    <item>
      <title>OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427521#M655850</link>
      <description>&lt;BR /&gt;In order to eliminate problems caused by power failure. I would like to backup the operating system. Is there any instruction could tell me about this issue in detail?&lt;BR /&gt;any help would be highly appreciated.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Jun 2000 07:39:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427521#M655850</guid>
      <dc:creator>Tommy Wang</dc:creator>
      <dc:date>2000-06-26T07:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427522#M655851</link>
      <description>Is it just the vg00 that you would like to backup? In this case is make_recovery the first choise. It's part of the IGNITE bundle</description>
      <pubDate>Mon, 26 Jun 2000 07:47:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427522#M655851</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-06-26T07:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427523#M655852</link>
      <description>You can umount other files systems and do a local fbackup through SAM.&lt;BR /&gt;If you need to recover your system use Ignite-UX command:&lt;BR /&gt;make_recovery -ACvd /dev/rmt/0m.</description>
      <pubDate>Mon, 26 Jun 2000 08:02:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427523#M655852</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-06-26T08:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427524#M655853</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if you haven't the software IGNITE you can get it here:&lt;BR /&gt;&lt;A href="http://www.software.hp.com/products/IUX/index.html" target="_blank"&gt;http://www.software.hp.com/products/IUX/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Andrew</description>
      <pubDate>Mon, 26 Jun 2000 08:17:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427524#M655853</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-06-26T08:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427525#M655854</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;If you want to take a Operating system backup you need to unmount the other file system.you can take a backup by using "tar" or "fbackup".&lt;BR /&gt;&lt;BR /&gt;using tar:-&lt;BR /&gt;&lt;BR /&gt;Before taking a backup unmount other file system (i.e /data1,/oracle or /user1)&lt;BR /&gt;&lt;BR /&gt;find out the tape drive device file,by using &lt;BR /&gt;&lt;BR /&gt;#ioscan -fnC tape (This will list available tape devices with device file)&lt;BR /&gt;For example i taking my device, device file as 0m&lt;BR /&gt;&lt;BR /&gt;#tar -cvf /dev/rmt/0m / ( This will take entire backup under /)&lt;BR /&gt;&lt;BR /&gt;#tar -xvf /dev/rmt/0m   ( This will restore your backup from tape to Hard Disk)&lt;BR /&gt;&lt;BR /&gt;#tar -tvf /dev/rmt/0m    (This will list contents of your dat drive)&lt;BR /&gt;&lt;BR /&gt;using fbackup:-&lt;BR /&gt;&lt;BR /&gt;#fbackup -if=/(root directory) of=/dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;you can invoke the fbackup command through "sam" also.If you want to take backup by using fbackup better use sam only.&lt;BR /&gt;By using sam you can include the directory or exclude the directory&lt;BR /&gt;&lt;BR /&gt;sam steps as follows&lt;BR /&gt;&lt;BR /&gt;1)#sam&lt;BR /&gt;&lt;BR /&gt;2)file system and backup&lt;BR /&gt;&lt;BR /&gt;If your system crashes (i.e not coming up) you need to use recovery media to recover Operating System.&lt;BR /&gt;&lt;BR /&gt;best os luck&lt;BR /&gt;&lt;BR /&gt;J.suren.</description>
      <pubDate>Mon, 26 Jun 2000 08:35:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427525#M655854</guid>
      <dc:creator>surendhar prakash.J</dc:creator>
      <dc:date>2000-06-26T08:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427526#M655855</link>
      <description>Thanks for all your replies. First step, I will install the ignite-ux. Thanks for all of you.</description>
      <pubDate>Tue, 27 Jun 2000 06:51:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427526#M655855</guid>
      <dc:creator>Tommy Wang</dc:creator>
      <dc:date>2000-06-27T06:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427527#M655856</link>
      <description>Your statement regarding power failures in your post strikes up some concern in my mind.  This suggests that you have no power protection on your system.  This is not a good idea on any virtual memory machine (most every machine these days).  If your talking about a  server, you are really setting yourself up for disaster.  Backups are only good to the time of the last backup - best case.  This assumes a lot of things like everything is synchronized at the time of backup (and maintained that way during the backup) and that everything is in fact backed up.  &lt;BR /&gt;&lt;BR /&gt;The bottom line here is that investing in a UPS is cheap insurance.  What is the cost of the machine downtime?  What is the cost of the data that may be lost?  On a workstation, you can do it for less than $200(US).  For larger machines there is all kinds of used equipment out there very reasonably priced.   &lt;BR /&gt;&lt;BR /&gt;Maybe this is a little off topic, but I thought I would bring it up in case it has not been considered.</description>
      <pubDate>Tue, 27 Jun 2000 14:48:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427527#M655856</guid>
      <dc:creator>Tim Malnati</dc:creator>
      <dc:date>2000-06-27T14:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427528#M655857</link>
      <description>HI!&lt;BR /&gt;&lt;BR /&gt;If it is only your operating system you are concerned about, I recommend an Ignite backup (make_recovery). A script like this should do it :&lt;BR /&gt;&lt;BR /&gt;    #!/usr/bin/sh&lt;BR /&gt;    make_recovery -Av -d /dev/rmt/0mn&lt;BR /&gt;    mt -t /dev/rmt/0m offl&lt;BR /&gt;&lt;BR /&gt;This will do a backup of your OS, and eject the tape when it is finished.&lt;BR /&gt;The great thing about make_recovery is that the tape becomes bootable, so if your system crashes you can boot from this tape, and it will "reinstall" your OS, and everything on vg00.&lt;BR /&gt;&lt;BR /&gt;Thomas</description>
      <pubDate>Wed, 28 Jun 2000 04:00:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427528#M655857</guid>
      <dc:creator>Thomas Wilhelmsen</dc:creator>
      <dc:date>2000-06-28T04:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427529#M655858</link>
      <description>If you have a concern about power failures, you should have a concern about backups as well. If the power goes out while a backup is being done, you don't have a backup.</description>
      <pubDate>Wed, 28 Jun 2000 16:09:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427529#M655858</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-06-28T16:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: OS BACKUP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427530#M655859</link>
      <description>Use IGNITE to take backup of ur complete system.With that you can make bootable also.</description>
      <pubDate>Wed, 28 Jun 2000 17:13:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup/m-p/2427530#M655859</guid>
      <dc:creator>Nagaraj Dandeboyina</dc:creator>
      <dc:date>2000-06-28T17:13:42Z</dc:date>
    </item>
  </channel>
</rss>

