Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: lsof equivalent on HP-UX

Re: lsof equivalent on HP-UX

From: Vitalis Jerome <vitalisman_at_gmail.com>
Date: Thu, 23 Jun 2005 14:32:52 +0200
Message-ID: <68b1285505062305321eb3911c@mail.gmail.com>


Try with fuser. If you have a guess about the filesystems on which these files are located, you can try something like:

find /home /tmp -type f -exec fuser {} \; 2>&1|grep <PID>

(note it might cause high CPU and IO activity!)

Bye
Jerome

On 6/23/05, Prem <premjhere_at_gmail.com> wrote:
> Hi Mladen / David ...
>
> i need to get approval for using lsof and it's in process.
> that's going to take some time.sorry that i should have
> told this before.
>
> in the mean time , i would need something in the place of lsof.
> is there any thing like that !!!!
>
> Thanks for your response.
>
> Regards,
> Prem.
>
>
> On 6/23/05, Mladen Gogala <gogala_at_sbcglobal.net> wrote:
> > I would try lsof. lsof is not just a linux tool. You can find it on:
> > ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/binaries/hpux
> >
> > Alternatively, if you have a C compiler, you can compile it from the source:
> > ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof
> > That is the recommended way of doing things.
> --
> http://www.freelists.org/webpage/oracle-l
>

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Jun 23 2005 - 08:38:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US