<?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 UNIX to PC in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937565#M16234</link>
    <description>I am currently working on my final year project related to fortran 77. &lt;BR /&gt; &lt;BR /&gt;I encounter some binary (sequential) files created by Fortran 77 in UNIX system, I try to read the file using my Compaq Visual Fortran 6.1A in PC but there are always error while reading the file.  &lt;BR /&gt; &lt;BR /&gt;As I do not have access to UNIX system, is there any way for me to convert the file to a text file in pc or read it using fortran 77 in pc? &lt;BR /&gt; &lt;BR /&gt;Thank you for your help</description>
    <pubDate>Sun, 04 Feb 2001 23:23:50 GMT</pubDate>
    <dc:creator>pweic</dc:creator>
    <dc:date>2001-02-04T23:23:50Z</dc:date>
    <item>
      <title>UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937565#M16234</link>
      <description>I am currently working on my final year project related to fortran 77. &lt;BR /&gt; &lt;BR /&gt;I encounter some binary (sequential) files created by Fortran 77 in UNIX system, I try to read the file using my Compaq Visual Fortran 6.1A in PC but there are always error while reading the file.  &lt;BR /&gt; &lt;BR /&gt;As I do not have access to UNIX system, is there any way for me to convert the file to a text file in pc or read it using fortran 77 in pc? &lt;BR /&gt; &lt;BR /&gt;Thank you for your help</description>
      <pubDate>Sun, 04 Feb 2001 23:23:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937565#M16234</guid>
      <dc:creator>pweic</dc:creator>
      <dc:date>2001-02-04T23:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937566#M16235</link>
      <description>Ops, I think I made some mistake.  &lt;BR /&gt;  &lt;BR /&gt;What I really mean is how to convert a fortran 77 binary file created in UNIX system to a text file or Fortran 77 binary file for Window 98.</description>
      <pubDate>Mon, 05 Feb 2001 00:14:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937566#M16235</guid>
      <dc:creator>pweic</dc:creator>
      <dc:date>2001-02-05T00:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937567#M16236</link>
      <description>Which UNIX system?  Which Fortran 77 on UNIX?  Most UNIX Fortran compilers create unformatted files in a method that is compatible with that used by Visual Fortran, but if the UNIX system is "big-endian" (Sun, IBM, HP, SGI), you'll need to open the file with CONVERT='BIG_ENDIAN' to do the length and data conversion.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 05 Feb 2001 04:38:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937567#M16236</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2001-02-05T04:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937568#M16237</link>
      <description>Thanks Steve, in fact I'm not 100% sure this is the source of the problem. The following is the error I get:  &lt;BR /&gt;  &lt;BR /&gt;cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc  &lt;BR /&gt;  &lt;BR /&gt;forrtl: severe &amp;lt;257&amp;gt;: formatted I/O to unit open for unformatted transfers, unit 20, file d:@fypTPXO.5h_TPXO.T.1.ot  &lt;BR /&gt;Image		pc	routine	line           source  &lt;BR /&gt;program1.exe	00409b79	unknown	unknown	unknown  &lt;BR /&gt;...  &lt;BR /&gt;...  &lt;BR /&gt;kernel32.dll	bff7b9e4	unknown	unknown	unknown  &lt;BR /&gt;kernel32.dll	bff7b896	unknown	unknown	unknown  &lt;BR /&gt;kernel32.dll	bff7a24f	unknown	unknown	unknown  &lt;BR /&gt;  &lt;BR /&gt;Stack trace terminated abnormally  &lt;BR /&gt;  &lt;BR /&gt;Incrementally linked image--PC correlation disabled.  &lt;BR /&gt;  &lt;BR /&gt;cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc  &lt;BR /&gt;  &lt;BR /&gt;I tried to use "form=formatted" to open the file, there was no error but I could only saw those binary symbols.</description>
      <pubDate>Mon, 05 Feb 2001 11:00:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937568#M16237</guid>
      <dc:creator>pweic</dc:creator>
      <dc:date>2001-02-05T11:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937569#M16238</link>
      <description>This has nothing to do with the file.  Your Fortran code is doing formatted I/O to the unit, but you want unformatted.  Remove the format specifier.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 05 Feb 2001 11:23:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937569#M16238</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2001-02-05T11:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937570#M16239</link>
      <description>Thanks Steve. I got it now, that's quite stupid i think.  &lt;BR /&gt;  &lt;BR /&gt;So when will I know that the unformatted sequential file can't be open by CONVERT='NATIVE' ? Cos I keep getting forrtl &amp;lt;22&amp;gt; now, but even if I set the recl = a very big number like 60000000, i still get the error.</description>
      <pubDate>Mon, 05 Feb 2001 21:26:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937570#M16239</guid>
      <dc:creator>pweic</dc:creator>
      <dc:date>2001-02-05T21:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: UNIX to PC</title>
      <link>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937571#M16240</link>
      <description>You have to know what system wrote the file and whether it is compatible with PCs and CVF.  I don't know of any automatic way to find out.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 06 Feb 2001 01:23:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/UNIX-to-PC/m-p/937571#M16240</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2001-02-06T01:23:09Z</dc:date>
    </item>
  </channel>
</rss>

