<?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 Backup and restore command for linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441804#M15330</link>
    <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;    Just want double confirm for tar command to backup file systems to tape and restore file systems from the tape are same as HP-UX as following ?&lt;BR /&gt;&lt;BR /&gt;backup : tar cvf /  /dev/rmt/c0t0d0DDS&lt;BR /&gt;restore: tar xvf  /dev/rmt/c0t0d0DDS /&lt;BR /&gt;&lt;BR /&gt;   what is the complete command format for dd command to copy whole harddisk to another disk? &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;Leon</description>
    <pubDate>Mon, 13 Dec 2004 00:51:04 GMT</pubDate>
    <dc:creator>Leon Shen</dc:creator>
    <dc:date>2004-12-13T00:51:04Z</dc:date>
    <item>
      <title>Backup and restore command for linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441804#M15330</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;    Just want double confirm for tar command to backup file systems to tape and restore file systems from the tape are same as HP-UX as following ?&lt;BR /&gt;&lt;BR /&gt;backup : tar cvf /  /dev/rmt/c0t0d0DDS&lt;BR /&gt;restore: tar xvf  /dev/rmt/c0t0d0DDS /&lt;BR /&gt;&lt;BR /&gt;   what is the complete command format for dd command to copy whole harddisk to another disk? &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;Leon</description>
      <pubDate>Mon, 13 Dec 2004 00:51:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441804#M15330</guid>
      <dc:creator>Leon Shen</dc:creator>
      <dc:date>2004-12-13T00:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore command for linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441805#M15331</link>
      <description>Backup : # tar -cvf /dev/rmt/c0t0d0DDS /&lt;BR /&gt;first destination then file to backup!!!&lt;BR /&gt;Restore : # cd &lt;DIR where="" you="" want="" to="" restore=""&gt;&lt;BR /&gt;          # tar -xvf /dev/rmt/c0t0d0DDS&lt;BR /&gt;&lt;BR /&gt;For dd command:&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/dsk/source of=/dev/dsk/destination bs=1024 ((block size)or 512 or 2048 as you want...)&lt;BR /&gt;&lt;BR /&gt;Stf ;-)&lt;BR /&gt;&lt;/DIR&gt;</description>
      <pubDate>Mon, 13 Dec 2004 04:51:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441805#M15331</guid>
      <dc:creator>Stf</dc:creator>
      <dc:date>2004-12-13T04:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore command for linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441806#M15332</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;dd and tar command are basic UNIX command and not differ in their sytax for different UNIX flavour. So go ahead and start using it as you were using it on HPUX,.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Mon, 13 Dec 2004 08:52:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441806#M15332</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-12-13T08:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore command for linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441807#M15333</link>
      <description>Linux tar is a GNU version, which has some differences from the tar in HU-UX. The GNU tar has more options. Use manpage to see the details or just do:&lt;BR /&gt;Linux: tar --help&lt;BR /&gt;HP-UX: tar -h&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Mon, 13 Dec 2004 09:16:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441807#M15333</guid>
      <dc:creator>Chris Xu</dc:creator>
      <dc:date>2004-12-13T09:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore command for linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441808#M15334</link>
      <description>hi Leon&lt;BR /&gt;&lt;BR /&gt;dd example dd if=/dev/hda5 of=/tmp/hda5backup&lt;BR /&gt;&lt;BR /&gt;than you can view backup via loop fs&lt;BR /&gt;&lt;BR /&gt;mount /u01/hda5backup /mnt/test -t ext3 -o loop&lt;BR /&gt;&lt;BR /&gt;where the ext3 is the used fs&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;these tar command are same on HP-UX and Linux&lt;BR /&gt;&lt;BR /&gt;(you can use -cvf -xvf as well not only cvf xvf;-)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;rgds Jan</description>
      <pubDate>Mon, 13 Dec 2004 12:00:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backup-and-restore-command-for-linux/m-p/3441808#M15334</guid>
      <dc:creator>Jan Sladky</dc:creator>
      <dc:date>2004-12-13T12:00:16Z</dc:date>
    </item>
  </channel>
</rss>

