<?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: rcp command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984786#M122964</link>
    <description>If the data is important, then create a script that will inventory (ie, find...) the source and the destination so you know that all the files and directories arrived OK. A shorthand method is to count the number of files (find /dir -type f|wc) and directories (find /dir -type d|wc). For true accuracy, use sum or cksum on files.&lt;BR /&gt;&lt;BR /&gt;NOTE: du and bdf will almost never match the original. While the resultant files and directories will be just fine, the occupied space may be larger or smaller then the original. Here are the scenarios:&lt;BR /&gt;&lt;BR /&gt;Smaller: one or several directories grew with hundreds or thousands of files which were subsequently deleted from the directories. The directory (it is also a file) grew in size for the entries but is never reduced when the files are removed. Copying a diectory with lots of empty slots will produce a new directory without the empty slots and thus the destination takes less space. But both directories behave the same.&lt;BR /&gt;&lt;BR /&gt;Larger: By far the most common scenario especially with database systems. A sparse file is a file where there are only a few occupied records but lots of undefined records. When an undefined record is encountered during a serial read, the result is a string of zeros. So when a sparse file is copied, all the zeros will be written and the copied file may many times larger than the original file. Yet, both files behave exactly the same way with applications.</description>
    <pubDate>Thu, 29 May 2003 22:28:23 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2003-05-29T22:28:23Z</dc:date>
    <item>
      <title>rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984780#M122958</link>
      <description>I am upgrading a k380 (10.20) to an RP7410 (11i)(k380 has the slower 100 base card) .  I need to copy 25 gig from "server1" /data to "server2 /data. this directory has lots of subdirectories and files. I have never used this command   Do you think that the "rcp" command is the way to go? or is there a better way to get the data accross the network?</description>
      <pubDate>Thu, 29 May 2003 20:57:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984780#M122958</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-05-29T20:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984781#M122959</link>
      <description>on server1&lt;BR /&gt;&lt;BR /&gt;cd /data&lt;BR /&gt;find . -print | cpio -ocxa | remsh &lt;SYSTEM2&gt; ???cd /data;cpio -icxvdmu???&lt;BR /&gt;&lt;/SYSTEM2&gt;</description>
      <pubDate>Thu, 29 May 2003 21:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984781#M122959</guid>
      <dc:creator>Paul Sperry</dc:creator>
      <dc:date>2003-05-29T21:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984782#M122960</link>
      <description>A major drawback to the rcp command (even with -p) is that file ownership metadata is not preserved. If this were me, I would choose tar, fbackup, or cpio that outputs to stdout ( a pipe) that does a remsh and untar's , uncpio's, or frecovers reading stdin on the remote server. If any of your files exceed 2GB then fbackup/frecover is your only option. I am naking the assumption that this is HP-UX to HP-UX as fbackup is an HP only command.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2003 21:07:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984782#M122960</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-05-29T21:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984783#M122961</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would suggest you install ssh on both the boxes. Set up public/private key authentication and then use "scp". It will be much faster and secure as it uses compressesion internally.&lt;BR /&gt;&lt;BR /&gt;You can get Openssh from&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.6.1p1/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.6.1p1/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Use the following documentation to setup no-password scp.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bumblebee.lcs.mit.edu/ssh2/" target="_blank"&gt;http://bumblebee.lcs.mit.edu/ssh2/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Once it is setup, you can use&lt;BR /&gt;&lt;BR /&gt;scp -rp /data your_account@server2:/data&lt;BR /&gt;&lt;BR /&gt;if your_account has write access to /data filesystem.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 May 2003 21:09:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984783#M122961</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2003-05-29T21:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984784#M122962</link>
      <description>Absolutely the way to go is with a backup approach.  Any sort of rcp, find piped to cpio, etc approach is fraught with problems.  I always used to stick with a find to cpio over nfs until I discovered that I wasn't getting everything I thought I was.  I wasted half a Saturday having to redo things with backup/restore.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 29 May 2003 21:24:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984784#M122962</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-05-29T21:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984785#M122963</link>
      <description>Wow, that sounds pretty scary.  The new system only came with an Ultrium cartridges. The K380 has a DLT, a internal DDS3, and a external DDS3 drive.  I am planning on moving the external DDS3 over to the RP7410, but I cannot bring down the k380  until next Thursday.   We will not do the real conversion for about a month, so backup is the only way to go during that time.    But in an effort to begin testng this week, I must still decide on which network method is best.</description>
      <pubDate>Thu, 29 May 2003 21:36:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984785#M122963</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-05-29T21:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984786#M122964</link>
      <description>If the data is important, then create a script that will inventory (ie, find...) the source and the destination so you know that all the files and directories arrived OK. A shorthand method is to count the number of files (find /dir -type f|wc) and directories (find /dir -type d|wc). For true accuracy, use sum or cksum on files.&lt;BR /&gt;&lt;BR /&gt;NOTE: du and bdf will almost never match the original. While the resultant files and directories will be just fine, the occupied space may be larger or smaller then the original. Here are the scenarios:&lt;BR /&gt;&lt;BR /&gt;Smaller: one or several directories grew with hundreds or thousands of files which were subsequently deleted from the directories. The directory (it is also a file) grew in size for the entries but is never reduced when the files are removed. Copying a diectory with lots of empty slots will produce a new directory without the empty slots and thus the destination takes less space. But both directories behave the same.&lt;BR /&gt;&lt;BR /&gt;Larger: By far the most common scenario especially with database systems. A sparse file is a file where there are only a few occupied records but lots of undefined records. When an undefined record is encountered during a serial read, the result is a string of zeros. So when a sparse file is copied, all the zeros will be written and the copied file may many times larger than the original file. Yet, both files behave exactly the same way with applications.</description>
      <pubDate>Thu, 29 May 2003 22:28:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984786#M122964</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-05-29T22:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984787#M122965</link>
      <description>I also have a couple of files greater then 2 gig...</description>
      <pubDate>Thu, 29 May 2003 22:29:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984787#M122965</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-05-29T22:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984788#M122966</link>
      <description>The files are very important.  But I have time to test.  The inventory script way sounds like a good way to verify that everything was copied over.  So when we start debugging we can at least know that any problems will not be because of the copy.   But now I must still decide on which method to use copy over the network? One this is that everone is in agreement that the "rcp command" way is not the way to go.</description>
      <pubDate>Thu, 29 May 2003 22:45:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984788#M122966</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-05-29T22:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984789#M122967</link>
      <description>Install GNU tar, which supports largefiles.  I use OpenSSH here, so I Can copy between systems using a pipe like this:&lt;BR /&gt;&lt;BR /&gt;tar cvf - /dirtory/path/to copy | ssh newhost tar -C /newdirpath -xf -&lt;BR /&gt;&lt;BR /&gt;This will tar up the old directory tree, and send to stdout, which ssh wil pipe ot new host.  tar on newhost will change to newdirpath and extract the archive from stdin.&lt;BR /&gt;&lt;BR /&gt;GNU tar is available from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You also need:&lt;BR /&gt;&lt;BR /&gt;gettext&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Gnu/gettext-0.12/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Gnu/gettext-0.12/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;and libiconv&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Development/Libraries/libiconv-1.9/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Development/Libraries/libiconv-1.9/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 02:24:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984789#M122967</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-05-30T02:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984790#M122968</link>
      <description>Hi,&lt;BR /&gt;another not very fast option could be to installa sw like HP DP.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can download it for free and have a 60 days try and buy optin.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This sw does the invetory for you and supports large files.&lt;BR /&gt;&lt;BR /&gt;Other way fbackup/frecover with the index option might be the less-cost solution.&lt;BR /&gt;&lt;BR /&gt;There are other threads in this section that tell you more information about the index option and how to use it.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Massimo&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2003 06:23:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984790#M122968</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-05-30T06:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984791#M122969</link>
      <description>I always am trying to find a good way to do what you are doing and have tried many different ways...here is a different approach you can consider.&lt;BR /&gt;&lt;BR /&gt;1.  create an nfs mount of server1:/data on server2.&lt;BR /&gt;&lt;BR /&gt;2.  Use the attached script to copy server1:/data to server2:/data.&lt;BR /&gt;&lt;BR /&gt;So if on server2, you have the local /data directory and you want to copy the /data_server1 directory (which you mounted via nfs), you simply would use the attached script:&lt;BR /&gt;&lt;BR /&gt;cpdir /data_sever1 /data &lt;BR /&gt;(note, the script does a recursive diff on the files, which I commented out, but it could also be easily modified to do a cksum listing as well.</description>
      <pubDate>Fri, 30 May 2003 12:03:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984791#M122969</guid>
      <dc:creator>Brian K. Arnholt</dc:creator>
      <dc:date>2003-05-30T12:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984792#M122970</link>
      <description>I always am trying to find a good way to do what you are doing and have tried many different ways...here is a different approach you can consider.&lt;BR /&gt;&lt;BR /&gt;1.  create an nfs mount of server1:/data on server2.&lt;BR /&gt;&lt;BR /&gt;2.  Use the attached script to copy server1:/data to server2:/data.&lt;BR /&gt;&lt;BR /&gt;So if on server2, you have the local /data directory and you want to copy the /data_server1 directory (which you mounted via nfs), you simply would use the attached script:&lt;BR /&gt;&lt;BR /&gt;cpdir /data_sever1 /data &lt;BR /&gt;(note, the script does a recursive diff on the files, which I commented out, but it could also be easily modified to do a cksum listing as well.&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;Brian</description>
      <pubDate>Fri, 30 May 2003 12:03:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984792#M122970</guid>
      <dc:creator>Brian K. Arnholt</dc:creator>
      <dc:date>2003-05-30T12:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984793#M122971</link>
      <description>I'm with Brian--try it across an NFS mount.  25GB isn't a lot of data, and even across a 10base100 connection won't take more than a few hours.  I'd use tar or GNU tar to move 'em with.&lt;BR /&gt;&lt;BR /&gt;It isn't very secure.  If you want security, insall secure shell and use scp -p to move everything.  This will be fairly fast once the initial connection is made.&lt;BR /&gt;&lt;BR /&gt;I've attached my usual document on how to implement secure shell.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Fri, 30 May 2003 15:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984793#M122971</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2003-05-30T15:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984794#M122972</link>
      <description>Thanks it looks like mounting it via NFS was the way to go.  it has been running for 1 hour and looks like it is already 1/2 done.  I am getting some permission and files over 2 gig errors? I guess I may need to tar these file? here is a sample of each error.&lt;BR /&gt;&lt;BR /&gt;cp: bad copy to /diamond/602a_NETNEW/602_NEW_PROGS.tar: read: Permission denied&lt;BR /&gt;cp: cannot access data/JCCONTM0.DAT: Value too large to be stored in data type&lt;BR /&gt;cp: cannot open data/eligprov/0303/elg/HP0303.ELG: Permission denied</description>
      <pubDate>Sun, 01 Jun 2003 21:17:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984794#M122972</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-06-01T21:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984795#M122973</link>
      <description>You are not going to able to tar those files either - tar (and cpio) has a 2GB limit. Tar can be patched to allow 8GB files but if it were me, I would use fbackup/frecover OR download/install the Gnu Version of tar which will handle large files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://gatekeep.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/" target="_blank"&gt;http://gatekeep.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 01 Jun 2003 21:29:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984795#M122973</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-06-01T21:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984796#M122974</link>
      <description>On a clean, switched network, the NFS method should be OK for files up to 2Gb using the cp command. NFS version 3 is required to support NFS with files larger than 2Gb. NFS version 3 is available on HP-UX 11 and higher.&lt;BR /&gt;&lt;BR /&gt;Now you mentioned tar and NFS at the same time. NFS simply mounts the remote filesystem and you would use standard file commands like cp to transfer the data. rcp (or tar or cpio and remsh or ssh, etc) as mentioned before do not use the NFS system but simply create a data pipe between the two systems. NFS would not be used in that case. For the best performance using a network pipe (and avoid the 2gb limits), use fbackup piped into remsh+frecover on the remote side. The diff and cksum commands could then be used through the NFS connection to compare the resultant copies.</description>
      <pubDate>Sun, 01 Jun 2003 22:45:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984796#M122974</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-06-01T22:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984797#M122975</link>
      <description>So another words I can fbackup from one system to the other system?  Because right now I do not have the same media on the to systems to back up on tape&lt;BR /&gt;&lt;BR /&gt;I guess another problem with cp command is a quantity limitation?  I also got this error on hundreds of files?&lt;BR /&gt;&lt;BR /&gt;cp: cannot create /diamond/utility/FXELGM20.PGM: Too many open files&lt;BR /&gt;cp: cannot create /diamond/utility/runHPR60.bat: Too many open files&lt;BR /&gt;cp: cannot create /diamond/utility/dcrscript.ksh: Too many open files&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jun 2003 13:41:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984797#M122975</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-06-02T13:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984798#M122976</link>
      <description>As I indicated in my first posting, you can use backup/resore programs but not use tape media. The idea is that on one end of a pipe, you have a backup program (e.g. fbackup) running that connects its standout output to a restore program (e.g. frecover) running on another system that reads std input. &lt;BR /&gt;&lt;BR /&gt;The "glue" that connects the systems is the remsh command.&lt;BR /&gt;&lt;BR /&gt;NFS (because of the overhead) was probably the slowest possible answer in addition to having possible 2GB limitations depending upon the OS and patch levels.&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jun 2003 15:23:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984798#M122976</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-06-02T15:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: rcp command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984799#M122977</link>
      <description>I am now having problems with the frecover part of this command.  Any ideas on what is wrong with that portion of the command?&lt;BR /&gt;&lt;BR /&gt;/etc/fbackup -0v -i /tmp/test  -f - | compress | remsh 10.0.0.1 -l root "cd /tmp/lund ; uncompress | cat - | \ /etc/frecover -Xrf -"&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Jun 2003 23:35:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rcp-command/m-p/2984799#M122977</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2003-06-02T23:35:53Z</dc:date>
    </item>
  </channel>
</rss>

