<?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: copy a filesystem from HP-UX to Linux Suse in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5576483#M478977</link>
    <description>&lt;P&gt;&amp;gt;HP-UX:&amp;nbsp;&amp;nbsp; pax: No Limit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You probably have to install &amp;nbsp;PAX-Enh and a patch.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Mar 2012 19:47:14 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2012-03-07T19:47:14Z</dc:date>
    <item>
      <title>copy a filesystem from HP-UX to Linux Suse</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5551291#M478428</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i have to expand the copy commands for copy a filesystem from HP-UX (vxfs) to Linux SuSe (ext3) or backwards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We had discuss here a long thread &lt;A target="_blank" href="http://h30499.www3.hp.com/t5/System-Administration/copy-a-filesystem-best-solution-local-host-or-remote-host/td-p/4787250"&gt;copy a filesystem best solution (local host or remote host)&amp;nbsp; &lt;/A&gt;and now i will extend it for copying to Linux.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i hope those options are right for Linux and compatible (like cpio)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;here my options:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cd /source_fs&lt;/P&gt;&lt;PRE&gt;CPIO
find .  ! \( -name lost+found -type d -prune \) -depth -print | cpio -oc |ssh root@other_host "cd /dest_fs; cpio -idumvV -H hpodc"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;TAR
tar -cpvf - . | ssh root@other_host "( cd /dest_fs; tar -xBpvf - )"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PAX
pax -w . | ssh root@other_host "( cd /dest_fs; pax -v -r -pe )"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;RSYNC
rsync --progress -avhz --rsh="ssh" . root@other_host:/dest_fs&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DUMP
dump ???&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;combination of tar and zip are also solutions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2012 17:56:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5551291#M478428</guid>
      <dc:creator>support_billa</dc:creator>
      <dc:date>2012-02-14T17:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: copy a filesystem from HP-UX to Linux Suse</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5568241#M478729</link>
      <description>&lt;P&gt;some news:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i tested files &amp;gt; 2 GB i detected limits... i forget :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so only options are - RSYNC and - CP (RCP/SCP) ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i will test:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.26"&gt;GNU version of tar, a tape file archiver&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://hpux.connect.org.uk/hppd/hpux/Gnu/cpio-2.11"&gt;GNU version of cpio, program to manage archives of files&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does anybody have experiences with this versions ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how i detect what version of CPIO and TAR is installed ? cpio --version isn't available !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Wed, 29 Feb 2012 14:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5568241#M478729</guid>
      <dc:creator>support_billa</dc:creator>
      <dc:date>2012-02-29T14:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: copy a filesystem from HP-UX to Linux Suse</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5576161#M478975</link>
      <description>&lt;P&gt;here a little overview about limits of the commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HP-UX :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tar: Size of Files &amp;gt;= 8GB.&amp;nbsp; Not dumped.&amp;nbsp; &lt;A href="http://h30499.www3.hp.com/t5/System-Administration/tar-is-not-working-with-a-file-more-than-8GB/td-p/4194999" target="_blank"&gt;tar is not working with a file more than 8GB &lt;/A&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GNU: tar: No Limit&amp;nbsp; ( local copy)&lt;BR /&gt;&lt;BR /&gt;HP-UX :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpio: Size of Files &amp;gt;= 2GB.&amp;nbsp; Not dumped.&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GNU: cpio: No Limit ( local copy)&amp;nbsp;&amp;nbsp; Limit is obsolete: &lt;A href="http://h30499.www3.hp.com/t5/System-Administration/GNU-cpio-2-6-does-not-write-files-larger-than-2-GB-gt-2GB/m-p/3853329#M275371" target="_blank"&gt;GNU cpio 2.6 does not write files larger than 2 GB (&amp;gt;2GB) &lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HP-UX :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pax: No Limit&lt;BR /&gt;&lt;BR /&gt;HP-UX :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rsync: No Limit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Remote Copy Limit / Error:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have problems using GNU cpio to copy to a remote host (HP-UX 2 HP-UX) files bigger &amp;gt;= 8GB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;command:&lt;/P&gt;&lt;PRE&gt;find /source_fs -xdev -depth ! \( -name lost+found -type d -prune \) -print | \
/usr/local/bin/cpio -ocav | \
ssh -p 22 server -l root "cd /dest_fs; /usr/local/bin/cpio-idumv"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Error: /usr/local/bin/cpio: 10 G File. field width not sufficient for storing file size&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2012 14:48:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5576161#M478975</guid>
      <dc:creator>support_billa</dc:creator>
      <dc:date>2012-03-07T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: copy a filesystem from HP-UX to Linux Suse</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5576483#M478977</link>
      <description>&lt;P&gt;&amp;gt;HP-UX:&amp;nbsp;&amp;nbsp; pax: No Limit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You probably have to install &amp;nbsp;PAX-Enh and a patch.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2012 19:47:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-filesystem-from-hp-ux-to-linux-suse/m-p/5576483#M478977</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2012-03-07T19:47:14Z</dc:date>
    </item>
  </channel>
</rss>

