<?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 Can't &amp;quot;put&amp;quot; and &amp;quot;take&amp;quot; with cu under linux? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638346#M992</link>
    <description>We can't seem to be able to transfer ascii files to our remote Linux server while dialed into the system directly with "cu" from an HP-UX server.&lt;BR /&gt;&lt;BR /&gt;Is there an alternative command to use with "cu" for this purpose under Linux?  Or, do we have to use FTP for file transfer?  (We don't always have a RAS to use with FTP, so that is a problem for us)</description>
    <pubDate>Thu, 03 Jan 2002 16:18:57 GMT</pubDate>
    <dc:creator>Debbie Fleith</dc:creator>
    <dc:date>2002-01-03T16:18:57Z</dc:date>
    <item>
      <title>Can't "put" and "take" with cu under linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638346#M992</link>
      <description>We can't seem to be able to transfer ascii files to our remote Linux server while dialed into the system directly with "cu" from an HP-UX server.&lt;BR /&gt;&lt;BR /&gt;Is there an alternative command to use with "cu" for this purpose under Linux?  Or, do we have to use FTP for file transfer?  (We don't always have a RAS to use with FTP, so that is a problem for us)</description>
      <pubDate>Thu, 03 Jan 2002 16:18:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638346#M992</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2002-01-03T16:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can't "put" and "take" with cu under linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638347#M993</link>
      <description>Hello Debbie,&lt;BR /&gt;&lt;BR /&gt;What exactly is the behaviour when you try to transfer files ?&lt;BR /&gt;&lt;BR /&gt;You may know that problems can occur during file transfer via modems (even via FTP, but less often) when some special characters are encountered and taken by the device as control characters.&lt;BR /&gt;&lt;BR /&gt;Therefore, the best way to make sure the transfer will take place correctly is to uuencode the files. This means converting the files into a 7-bit format, transfer it, then re-assemble 7-bit data units to retrieve the original data (uudecode).&lt;BR /&gt;&lt;BR /&gt;Example : you have 3 files to transfer, let's say file1, file2, file3.&lt;BR /&gt;&lt;BR /&gt;To reduce transfer size, you may want to tar then gzip as follows :&lt;BR /&gt;&lt;BR /&gt;tar cvf file.tar file1 file2 file3 ; gzip file.tar&lt;BR /&gt;&lt;BR /&gt;After that, uuencode the result as follows :&lt;BR /&gt;&lt;BR /&gt;uuencode file.tar.gz file.tar.gz &amp;gt;file.uue&lt;BR /&gt;&lt;BR /&gt;Transfer your file (TAKE, PUT).&lt;BR /&gt;&lt;BR /&gt;After that, uudecode, then guzip and untar the file :&lt;BR /&gt;&lt;BR /&gt;uudecode file.uue&lt;BR /&gt;gunzip file.tar.gz&lt;BR /&gt;tar xvf file.tar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo.&lt;BR /&gt;&lt;BR /&gt;P.S. Don't forget to rate this answer (from 1 to 10).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jan 2002 00:21:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638347#M993</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-01-08T00:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can't "put" and "take" with cu under linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638348#M994</link>
      <description>I couldn't get uuencode to work on the Linux side.&lt;BR /&gt;&lt;BR /&gt;I only need to transfer one file at a time, so I tried "uuencode file &amp;gt; file.uue"; "uuencode file"; and "uuencode file file.uue"&lt;BR /&gt;--- none of these commands worked.  They all hung.&lt;BR /&gt;&lt;BR /&gt;Any further ideas?</description>
      <pubDate>Tue, 08 Jan 2002 15:09:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638348#M994</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2002-01-08T15:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can't "put" and "take" with cu under linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638349#M995</link>
      <description>Debbie,&lt;BR /&gt;&lt;BR /&gt;The man page for uuencode says:&lt;BR /&gt;&lt;BR /&gt;uuencode [-m] [ file ] name&lt;BR /&gt;&lt;BR /&gt;The "-m" causes Base64 encoding.  That's a matter of personal preference.  It looks like you are missing the second argument "name".  I would try this:&lt;BR /&gt;&lt;BR /&gt;uuencode file file &amp;gt; file.uue&lt;BR /&gt;&lt;BR /&gt;The second "file" ( "name" from the man page ) is the name that uuencode embeds at the beginning of the uuencoded file.  When uudecode operates on this file at the remote end, it reads that name and places the output into a file with that name.  So if I had a picture file I wanted to encode, I would do this:&lt;BR /&gt;&lt;BR /&gt;uuencode picture.jpg picture.jpg &amp;gt; picture.uue&lt;BR /&gt;&lt;BR /&gt;There is nothing sacred about the "uue" extension.  But if you opened the picture.uue file with vi, you would see "picture.jpg" on the first line.  That is what uudecode will use.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Tom&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jan 2002 19:45:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638349#M995</guid>
      <dc:creator>Tom Dawson</dc:creator>
      <dc:date>2002-01-08T19:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can't "put" and "take" with cu under linux?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638350#M996</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Thank you Tom for your help. Sorry Debbie, my syntax was right but I forgot to explain it.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jan 2002 21:06:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-quot-put-quot-and-quot-take-quot-with-cu-under-linux/m-p/2638350#M996</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-01-08T21:06:20Z</dc:date>
    </item>
  </channel>
</rss>

