Anybody know this command??

Anybody know this command??

Post by Christopher J Rusi » Fri, 24 Apr 1998 04:00:00



I'm new at Linux and I've been trying to figure out a certain command.
I use a solaris box at work and to see process utilization I use a
command called 'SAR'.  Anybody know what the equivalent command would be
for Linux?? I'm using Slackware.

Any info would be much appreciated,
Chris

 
 
 

Anybody know this command??

Post by Ed Reppe » Fri, 24 Apr 1998 04:00:00



>I'm new at Linux and I've been trying to figure out a certain command.
>I use a solaris box at work and to see process utilization I use a
>command called 'SAR'.  Anybody know what the equivalent command would be
>for Linux?? I'm using Slackware.

I'm not familiar with solaris (SunOS?), but try ps or top.

--

Regards,

Ed



 
 
 

Anybody know this command??

Post by Saadiq Rodgers-Ki » Fri, 24 Apr 1998 04:00:00



>I'm new at Linux and I've been trying to figure out a certain command.
>I use a solaris box at work and to see process utilization I use a
>command called 'SAR'.  Anybody know what the equivalent command would be
>for Linux?? I'm using Slackware.

Process utilization?  I'm not sure exactly what you mean but you could try
running 'top' or 'ps' both of which have various useful extra flags.  Good
luck.

--
Saadiq
-=>take NO_JUNK out of the email address to reply<=-
saadiqr AT princeton DOT edu

 
 
 

Anybody know this command??

Post by brian moo » Fri, 24 Apr 1998 04:00:00


On Thu, 23 Apr 1998 08:51:19 -0700,

Quote:> I'm new at Linux and I've been trying to figure out a certain command.
> I use a solaris box at work and to see process utilization I use a
> command called 'SAR'.  Anybody know what the equivalent command would be
> for Linux?? I'm using Slackware.

sar is a SysV command that as far as I know hasn't left SysV for the
BSD's or Linux.

You can get some of the information from programs like top or vmstat.

--
Brian Moore                             Kill A Spammer For Jesus
Sysadmin, C/Perl Hacker, Usenet Vandal

 
 
 

Anybody know this command??

Post by Marie-Franc » Sun, 26 Apr 1998 04:00:00


I don't think, it's what Christopher is looking for.
the ps or top commands are not quite the same.

Sar is a very useful utility found on SUN, AIX, IRIX, etc... used
to collect statistics over a period of time.

Unfortunately, I'm not aware of a similar utility on Slackware but
one can achieve something similar using ps but this requires
a bit of shell programming.

But I'm almost sure that a similar tool is available at www.linux.org.


> >I'm new at Linux and I've been trying to figure out a certain command.
> >I use a solaris box at work and to see process utilization I use a
> >command called 'SAR'.  Anybody know what the equivalent command would be
> >for Linux?? I'm using Slackware.

> Process utilization?  I'm not sure exactly what you mean but you could try
> running 'top' or 'ps' both of which have various useful extra flags.  Good
> luck.

> --
> Saadiq
> -=>take NO_JUNK out of the email address to reply<=-
> saadiqr AT princeton DOT edu

--
Powered by Linux!

 
 
 

Anybody know this command??

Post by Kees Molena » Sun, 26 Apr 1998 04:00:00



: I'm new at Linux and I've been trying to figure out a certain command.
: I use a solaris box at work and to see process utilization I use a
: command called 'SAR'.  Anybody know what the equivalent command would be
: for Linux?? I'm using Slackware.

: Any info would be much appreciated,
: Chris
sar is not in any Linux distribution as far as I know,however
I once had a tool called atsar (which was build by at-computing ) which is
very good.
And they have a Linux port.. I Have to dig up the sources to check if
it is freely distributable or not (Maybe  you can check their ftp site?)

(I can't look at the moment as I have temporarely only uucp connectivity
to the Internet :-( )

Kees


 
 
 

Anybody know this command??

Post by Tony O'Brya » Sun, 26 Apr 1998 04:00:00



> I'm new at Linux and I've been trying to figure out a certain command.
> I use a solaris box at work and to see process utilization I use a
> command called 'SAR'.  Anybody know what the equivalent command would be
> for Linux?? I'm using Slackware.

> Any info would be much appreciated,
> Chris

  "ps -aux"
 
 
 

Anybody know this command??

Post by Yod » Tue, 28 Apr 1998 04:00:00



    >> I'm new at Linux and I've been trying to figure out a certain command.
    >> I use a solaris box at work and to see process utilization I use a
    >> command called 'SAR'.  Anybody know what the equivalent command would be
    >> for Linux?? I'm using Slackware.
    >>
    >> Any info would be much appreciated,
    >> Chris

    Tony>   "ps -aux"

        Not quite!
        I remember "sar" command of some UNIX boxes. I guess it's a
legacy from very old process auditing tools. Linux has no SAR command,
but what SAR used to do is nothing like "ps -aux". The PS command only
shows current process status. SAR gave a statistics of most frequently
used programs, including CPU and memory usage, as well as number of
invocations.

        Regards,

 
 
 

Anybody know this command??

Post by Richard Stein » Wed, 29 Apr 1998 04:00:00



spake unto us, saying:

Quote:>        I remember "sar" command of some UNIX boxes. I guess it's a
>legacy from very old process auditing tools. Linux has no SAR command,
>but what SAR used to do is nothing like "ps -aux". The PS command only
>shows current process status. SAR gave a statistics of most frequently
>used programs, including CPU and memory usage, as well as number of
>invocations.

Sounds interesting.  How did it compare to things like top?

--

           OS/2 Warp 4 + Linux + Executor = PC Hobbyist Heaven!
                   The Theorem Theorem: If If, Then Then.

 
 
 

Anybody know this command??

Post by Villy Kru » Wed, 29 Apr 1998 04:00:00


The closest equivalent of sar is the vmstat command.

 
 
 

Anybody know this command??

Post by Graham Broadbridg » Wed, 29 Apr 1998 04:00:00



: I'm new at Linux and I've been trying to figure out a certain command.
: I use a solaris box at work and to see process utilization I use a
: command called 'SAR'.  Anybody know what the equivalent command would be
: for Linux?? I'm using Slackware.

'sar' is a standard AT&T UNIX command for 'System Activity Reporting'.

It actually comprises a few scripts, 'sa1' that collects the kernel
counters and saves them to a binary logfile, 'sa2' that generates reports,
and 'sar' itself (which is an executable) that lets you interrogate the logs.

There is no Linux equivalent unfortunately.

It's a glaring omission from Linux, and hopefully someone will write an
equivalent soon :-)  It'll need a lot of /proc processing, and isn't as simple
as it sounds.

--
-------------------------------------------------------------------------------




 Netmeeting:                                    peachpitt.apana.org.au
-------------------------------------------------------------------------------

 
 
 

Anybody know this command??

Post by David E. Fo » Sun, 03 May 1998 04:00:00



>        I remember "sar" command of some UNIX boxes. I guess it's a
>legacy from very old process auditing tools. Linux has no SAR command,

Try 'top', or perhaps 'yamm', the latter which is quite useful, but may be
harder to find. I know some distributions (notably Redhat) install it, though.

--
------------------------------------------------------------------------
David E. Fox                 Tax              Thanks for letting me


-----------------------------------------------------------------------

 
 
 

1. Does anybody know how to use the badtrk command ?

I think we have an error on one of our SCSI hard disks, so I am going to run
badtrk on them to see if there is an error on one of them. But does the fact
that they are Mirrored on a raid controller affect badtrk. I am not sure if
I need to tell badtrk to scan one drive at a time, or if it does both on its
own. I think the error we have is on hd0.

Thanx
Ian

2. Can it take less time then 20000 ms for reading a socket.

3. NNTP over SSL, port 563, anybody know, anybody hear

4. PPP connection to 3com AccessBuilder

5. Newbie Questions!

6. Anybody know this warning message before?

7. alternate file system translator

8. Is there anybody knowing a good "pen" as substitute for the mouse?

9. Anybody know where to find reference for DDC spec (PNP monitors)

10. Anybody know which apps need to be recompiled...

11. Does anybody know a gzip-compressor in hardware ?

12. diald/pppd: failed to set terminal attributes - DOES ANYBODY KNOW?