<?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: Device or resource busy in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622502#M40576</link>
    <description>will fuser help in linux ??&lt;BR /&gt;&lt;BR /&gt;I dont know!!!&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sooraj</description>
    <pubDate>Thu, 22 Apr 2010 17:35:13 GMT</pubDate>
    <dc:creator>SoorajCleris</dc:creator>
    <dc:date>2010-04-22T17:35:13Z</dc:date>
    <item>
      <title>Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622500#M40574</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;Howto check under Linux why a file or resource is busy, I mean which program is using this file?</description>
      <pubDate>Thu, 22 Apr 2010 16:01:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622500#M40574</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2010-04-22T16:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622501#M40575</link>
      <description>I don't know.  Here in HP-UX land, we sometimes use a utility called lsof.  I suspect there is probably a port for you in linux land, too.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 22 Apr 2010 16:14:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622501#M40575</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2010-04-22T16:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622502#M40576</link>
      <description>will fuser help in linux ??&lt;BR /&gt;&lt;BR /&gt;I dont know!!!&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sooraj</description>
      <pubDate>Thu, 22 Apr 2010 17:35:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622502#M40576</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-04-22T17:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622503#M40577</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;lsof started out on Linux. So lsof is a good way to find out what is occupying the resource.&lt;BR /&gt;&lt;BR /&gt;fuser works to, but the HP-UX switch -c does not work on Linux, you'll need to consult the man page to work that out.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 22 Apr 2010 17:56:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622503#M40577</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-04-22T17:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622504#M40578</link>
      <description>Chris,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Specific to your question,&lt;BR /&gt;lsof filename &lt;BR /&gt;&lt;BR /&gt;And to see all files in use by a particular process:&lt;BR /&gt;lsof -p -processid&lt;BR /&gt;&lt;BR /&gt;For the rest, man lsof&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;SNS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Apr 2010 19:23:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622504#M40578</guid>
      <dc:creator>S.N.S</dc:creator>
      <dc:date>2010-04-22T19:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Device or resource busy</title>
      <link>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622505#M40579</link>
      <description>Hi Chris,&lt;BR /&gt;&lt;BR /&gt;lsof (no options) will list all files opened by any processes currently running. To restrict this to processes owned by username, &lt;BR /&gt;&lt;BR /&gt;# lsof -u username&lt;BR /&gt;&lt;BR /&gt;# lsof +D /directory will show processes which have files in this directory open.&lt;BR /&gt;&lt;BR /&gt;# lsof -c processname will show all processes beginning with processname that have files open; &lt;BR /&gt;# lsof +p PID does the same thing for a process ID. &lt;BR /&gt;# lsof -i will get you information about IP sockets.&lt;BR /&gt;&lt;BR /&gt;Check out the man page for more detail and for the many other available options.&lt;BR /&gt;&lt;BR /&gt;Rgds-Kranti</description>
      <pubDate>Tue, 27 Apr 2010 03:46:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/device-or-resource-busy/m-p/4622505#M40579</guid>
      <dc:creator>Kranti Mahmud</dc:creator>
      <dc:date>2010-04-27T03:46:45Z</dc:date>
    </item>
  </channel>
</rss>

