<?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: SCP copy in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964053#M54150</link>
    <description>&lt;!--!*#--&gt;What do you have on a UNIX system which can&lt;BR /&gt;read a VMS variable record length file?&lt;BR /&gt;&lt;BR /&gt;Changing the file attributes (alone) would&lt;BR /&gt;probably not change the answer to that one.&lt;BR /&gt;&lt;BR /&gt;If the file contains text, and if you would&lt;BR /&gt;like scp (and any application on UNIX) to be&lt;BR /&gt;able to handle it, you might wish to use&lt;BR /&gt;CONVERT to change the file format.  Here's a&lt;BR /&gt;simple example of a command procedure to do&lt;BR /&gt;that:&lt;BR /&gt;&lt;BR /&gt;ALP $ type utility:CNVSTMLF.COM&lt;BR /&gt;$!                                              12 December 1999.  SMS.&lt;BR /&gt;$!&lt;BR /&gt;$!    CONVERT a file to StreamLF record format.&lt;BR /&gt;$!&lt;BR /&gt;$ convert 'p1' 'p2' /fdl = sys$input:&lt;BR /&gt;RECORD&lt;BR /&gt;        FORMAT stream_lf&lt;BR /&gt;$!&lt;BR /&gt;ALP $&lt;BR /&gt;</description>
    <pubDate>Sun, 18 Mar 2007 21:53:48 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2007-03-18T21:53:48Z</dc:date>
    <item>
      <title>SCP copy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964051#M54148</link>
      <description>When using scp copy from vms to unix server I get the following error with variable length files that has a block size of more than 7100 blocks&lt;BR /&gt;&lt;BR /&gt;gs_001600_20070307_prodpl_00009 |  3.3MB |  47.5 kB/s | ETA: 00:00:06 |  90%&lt;BR /&gt;tcpip$ssh_scp2.exe: warning: gs_001600_20070307_prodpl_000095_001_01.txt (src): got EOF reading file (server msg: 'Encountered EOF.')&lt;BR /&gt;&lt;BR /&gt;If I change the file record type to it work but the remote server can node read the file.&lt;BR /&gt;&lt;BR /&gt;Current version if scp and VMS&lt;BR /&gt;tcpip$ssh_scp2.exe: SSH Secure Shell OpenVMS (V5.5) 3.2.0 on hp AlphaServer GS1280 7/1150 - VMS V7.3-2&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Mar 2007 21:33:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964051#M54148</guid>
      <dc:creator>Robert McGowan</dc:creator>
      <dc:date>2007-03-18T21:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: SCP copy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964052#M54149</link>
      <description>I have no eperience with scp, but I quickly scanned the man page and help screen and as I expected it does not seem to mention file conversions. With (s)ftp you get to select ASCII or BINARY mode. I suspect scp just does binary. It that really what you want? Do you have a usage for an OpenVMS variable length record format file on Tru64? I much doubt it.&lt;BR /&gt;I woudl recomment converting the file on the VMS side to 'stream_lf' which is binary compatible with Tru64 text files and try again.&lt;BR /&gt;&lt;BR /&gt;You need an FDL file for that on the VMS side.&lt;BR /&gt;&lt;BR /&gt;On OpenVMS V8.3 or better you can use:&lt;BR /&gt;&lt;BR /&gt;$CONVERT/FDL="record; format stream_lf" var.txt stmlf.txt&lt;BR /&gt;&lt;BR /&gt;Before that version you'll need to create a small fdl file containg those commands and pass that.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Mar 2007 21:50:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964052#M54149</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-03-18T21:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: SCP copy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964053#M54150</link>
      <description>&lt;!--!*#--&gt;What do you have on a UNIX system which can&lt;BR /&gt;read a VMS variable record length file?&lt;BR /&gt;&lt;BR /&gt;Changing the file attributes (alone) would&lt;BR /&gt;probably not change the answer to that one.&lt;BR /&gt;&lt;BR /&gt;If the file contains text, and if you would&lt;BR /&gt;like scp (and any application on UNIX) to be&lt;BR /&gt;able to handle it, you might wish to use&lt;BR /&gt;CONVERT to change the file format.  Here's a&lt;BR /&gt;simple example of a command procedure to do&lt;BR /&gt;that:&lt;BR /&gt;&lt;BR /&gt;ALP $ type utility:CNVSTMLF.COM&lt;BR /&gt;$!                                              12 December 1999.  SMS.&lt;BR /&gt;$!&lt;BR /&gt;$!    CONVERT a file to StreamLF record format.&lt;BR /&gt;$!&lt;BR /&gt;$ convert 'p1' 'p2' /fdl = sys$input:&lt;BR /&gt;RECORD&lt;BR /&gt;        FORMAT stream_lf&lt;BR /&gt;$!&lt;BR /&gt;ALP $&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Mar 2007 21:53:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964053#M54150</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-03-18T21:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: SCP copy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964054#M54151</link>
      <description>Guys, &lt;BR /&gt;Thank very much that fix my problem.&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Mar 2007 22:15:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/scp-copy/m-p/3964054#M54151</guid>
      <dc:creator>Robert McGowan</dc:creator>
      <dc:date>2007-03-18T22:15:45Z</dc:date>
    </item>
  </channel>
</rss>

