<?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: strange problem: &amp;quot;file cannot access: No such file or directory&amp;quot; in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148822#M157218</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;rm -i *iasm*&lt;BR /&gt;or ls -li *iasm*&lt;BR /&gt;first col is inode&lt;BR /&gt;find ./ -inum ... -exec rm -i "{}" ";"&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 18 Dec 2003 18:31:39 GMT</pubDate>
    <dc:creator>Michael Schulte zur Sur</dc:creator>
    <dc:date>2003-12-18T18:31:39Z</dc:date>
    <item>
      <title>strange problem: "file cannot access: No such file or directory"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148820#M157216</link>
      <description>I just backup my system using make_tape_recovery, there's a warning inside:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;pax: home/oracle/D:\iasm8home/oracle/verisign_cert.sh : No such file or directory&lt;BR /&gt;WARNING: The pax command returned a non-zero exit status (exit status 1)&lt;BR /&gt;WARNING: The pax command returned a non-zero exit status (exit status 1)&lt;BR /&gt;       * Creation of system archive complete&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;I check the folder '/home/oracle', it did have a strange file:&lt;BR /&gt;&lt;BR /&gt;#ll &lt;BR /&gt;...&lt;BR /&gt;-rw-r-----   1 oracle     oinstall        74 Jul 24 11:58 D:\iasm8\click\log\clickstreamAgent.log&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;then i tried:&lt;BR /&gt;# mv D:\iasm8\click\log\clickstreamAgent.log abc&lt;BR /&gt;mv: D:iasm8clicklogclickstreamAgent.log: cannot access: No such file or directory&lt;BR /&gt;&lt;BR /&gt;# rm D:\iasm8\click\log\clickstreamAgent.log&lt;BR /&gt;rm: D:iasm8clicklogclickstreamAgent.log non-existent&lt;BR /&gt;&lt;BR /&gt;So, how can i get rid of that file ?&lt;BR /&gt;Thanks!</description>
      <pubDate>Thu, 18 Dec 2003 18:20:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148820#M157216</guid>
      <dc:creator>yyghp</dc:creator>
      <dc:date>2003-12-18T18:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: strange problem: "file cannot access: No such file or directory"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148821#M157217</link>
      <description>I would do a rm -i D*. This will prompt you for a y/n before unlinking the file. After your file has been listed and removed, hit Ctrl-C (or whatever your INTR is set to) to terminate the rm command.&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Dec 2003 18:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148821#M157217</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2003-12-18T18:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: strange problem: "file cannot access: No such file or directory"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148822#M157218</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;rm -i *iasm*&lt;BR /&gt;or ls -li *iasm*&lt;BR /&gt;first col is inode&lt;BR /&gt;find ./ -inum ... -exec rm -i "{}" ";"&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Dec 2003 18:31:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148822#M157218</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2003-12-18T18:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: strange problem: "file cannot access: No such file or directory"</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148823#M157219</link>
      <description>The problem is that the filename contains \ characters which have special meaning to shells. In this case, each \ means that the next character is to be interpreted without special processing. And the rm command never sees the \ character. The secret is remove the special meaning of \ by adding another \ as in:&lt;BR /&gt; &lt;BR /&gt;rm D:\\iasm8\\click\\log\\clickstreamAgent.log&lt;BR /&gt; &lt;BR /&gt;Ont the other hand, you could let the shell use pattern matching to find the file. Try:&lt;BR /&gt; &lt;BR /&gt;echo D:*&lt;BR /&gt;echo *Agent.log&lt;BR /&gt; &lt;BR /&gt;If either of these returns just the require filename, change echo to rm and the file will be gone. This file exists because you are likely sharing files with PC users.</description>
      <pubDate>Thu, 18 Dec 2003 22:43:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/strange-problem-quot-file-cannot-access-no-such-file-or/m-p/3148823#M157219</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-12-18T22:43:53Z</dc:date>
    </item>
  </channel>
</rss>

