<?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: monitoring file access in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619474#M235666</link>
    <description>Here you have a lot of Faq and answers about lsof:&lt;BR /&gt;&lt;A href="http://www.mirrors.wiretapped.net/security/host-security/lsof/FAQ" target="_blank"&gt;http://www.mirrors.wiretapped.net/security/host-security/lsof/FAQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Alessandro</description>
    <pubDate>Tue, 06 Sep 2005 07:52:07 GMT</pubDate>
    <dc:creator>Alessandro Pilati</dc:creator>
    <dc:date>2005-09-06T07:52:07Z</dc:date>
    <item>
      <title>monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619466#M235658</link>
      <description>Anyone know how to monitoring what process access a file? &lt;BR /&gt;I tried with fuser but it doesn't fit my need.&lt;BR /&gt;I need some utility that create a list of the all  process that have accessed a specific file.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Sep 2005 07:28:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619466#M235658</guid>
      <dc:creator>Marco Salvi</dc:creator>
      <dc:date>2005-09-06T07:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619467#M235659</link>
      <description>Hi,&lt;BR /&gt;What about lsof then, if you dont have it you will have to go to your prefered porting archive center and download the product...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor</description>
      <pubDate>Tue, 06 Sep 2005 07:40:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619467#M235659</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2005-09-06T07:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619468#M235660</link>
      <description>Hi Marco"&lt;BR /&gt;&lt;BR /&gt;"lsof"  a contributory utility may be of help to you. Please visit following link for download&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.76/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.76/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Mahesh</description>
      <pubDate>Tue, 06 Sep 2005 07:41:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619468#M235660</guid>
      <dc:creator>Mahesh Kumar Malik</dc:creator>
      <dc:date>2005-09-06T07:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619469#M235661</link>
      <description>finding this out is a multi step operation.&lt;BR /&gt;&lt;BR /&gt;fuser -cu /filesystem&lt;BR /&gt;&lt;BR /&gt;can show open processes on a filesystem.&lt;BR /&gt;&lt;BR /&gt;lsof can provide data on processes and is pretty useful.&lt;BR /&gt;&lt;BR /&gt;But all processes that have accessed a specific file? Maybe if the system was trusted, you could set up auditing reports to do that for you.&lt;BR /&gt;&lt;BR /&gt;HIDS/9000 comes to mind, but I'm not sure either is the right tool for this job.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 06 Sep 2005 07:43:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619469#M235661</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-09-06T07:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619470#M235662</link>
      <description>A file doesn't have any indication of what processed accessed it in the past.&lt;BR /&gt;&lt;BR /&gt;You can get the no. of processed accessing it at a particular snapshot.&lt;BR /&gt;&lt;BR /&gt;Or simply run a script via cron which appends that to a log.</description>
      <pubDate>Tue, 06 Sep 2005 07:43:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619470#M235662</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-09-06T07:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619471#M235663</link>
      <description>lsof will give details about open files hold by a process. Once process is completed, you won't get any details.&lt;BR /&gt;&lt;BR /&gt;Get lsof from following.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk" target="_blank"&gt;http://hpux.connect.org.uk&lt;/A&gt;</description>
      <pubDate>Tue, 06 Sep 2005 07:44:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619471#M235663</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-09-06T07:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619472#M235664</link>
      <description>the lsof is the best choise:&lt;BR /&gt;&lt;A href="http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/binaries/hpux/" target="_blank"&gt;http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/binaries/hpux/&lt;/A&gt;&lt;BR /&gt;use this download it works!</description>
      <pubDate>Tue, 06 Sep 2005 07:46:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619472#M235664</guid>
      <dc:creator>Jannik</dc:creator>
      <dc:date>2005-09-06T07:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619473#M235665</link>
      <description>Marco,&lt;BR /&gt;here you can download directly the binaries of lsof:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/" target="_blank"&gt;http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Ciao,&lt;BR /&gt;Alessandro</description>
      <pubDate>Tue, 06 Sep 2005 07:50:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619473#M235665</guid>
      <dc:creator>Alessandro Pilati</dc:creator>
      <dc:date>2005-09-06T07:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619474#M235666</link>
      <description>Here you have a lot of Faq and answers about lsof:&lt;BR /&gt;&lt;A href="http://www.mirrors.wiretapped.net/security/host-security/lsof/FAQ" target="_blank"&gt;http://www.mirrors.wiretapped.net/security/host-security/lsof/FAQ&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Alessandro</description>
      <pubDate>Tue, 06 Sep 2005 07:52:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619474#M235666</guid>
      <dc:creator>Alessandro Pilati</dc:creator>
      <dc:date>2005-09-06T07:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619475#M235667</link>
      <description>Thanks a lot for the answers, anyway lsof doesn't help me.&lt;BR /&gt;lsof can't report when a file is opened by the vi editor, so all the processes that have a behaviour similar to vi are not be catched by lsof.&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Sep 2005 08:49:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619475#M235667</guid>
      <dc:creator>Marco Salvi</dc:creator>
      <dc:date>2005-09-06T08:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619476#M235668</link>
      <description>I am not sure if this will be acceptable to u but anyways: &lt;BR /&gt;&lt;BR /&gt;you can try HIDS( Host intrusion detection system).&lt;BR /&gt;create rules on the filename.</description>
      <pubDate>Sun, 02 Dec 2007 14:58:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619476#M235668</guid>
      <dc:creator>Srimalik</dc:creator>
      <dc:date>2007-12-02T14:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring file access</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619477#M235669</link>
      <description>oops this thread is 2 yrs old.</description>
      <pubDate>Sun, 02 Dec 2007 14:59:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-access/m-p/3619477#M235669</guid>
      <dc:creator>Srimalik</dc:creator>
      <dc:date>2007-12-02T14:59:28Z</dc:date>
    </item>
  </channel>
</rss>

