From owner-freebsd-questions@FreeBSD.ORG Thu Feb 15 08:43:06 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 122C916A401 for ; Thu, 15 Feb 2007 08:43:06 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.freebsd.org (Postfix) with ESMTP id CC3C213C4A5 for ; Thu, 15 Feb 2007 08:43:05 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so589533wxc for ; Thu, 15 Feb 2007 00:43:05 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=aCT07KqqMsZDLExlMUipPvCWPKgGpUP0W256fVuHJzVwRu//MBiNIkuo3BgXrvKqmGOFSqcaynIj+VJ6XJ0dYRGG31hxA7blwq+j7bRlaGOFNrwaOLMfYzz11xC0g1mWBGTacZWI0+vfSCIhnitjgnnlI30zkAWSu/2nCgVH7I0= Received: by 10.70.30.5 with SMTP id d5mr2521088wxd.1171527441322; Thu, 15 Feb 2007 00:17:21 -0800 (PST) Received: by 10.70.14.15 with HTTP; Thu, 15 Feb 2007 00:17:21 -0800 (PST) Message-ID: <14989d6e0702150017y478faaf3o28d92c53e7faa81a@mail.gmail.com> Date: Thu, 15 Feb 2007 09:17:21 +0100 From: "Christian Walther" To: "Dan Mahoney, System Admin" In-Reply-To: <20070215022008.I26610@prime.gushi.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070215022008.I26610@prime.gushi.org> Cc: questions@freebsd.org Subject: Re: number of processes reported by top versus ps X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Feb 2007 08:43:06 -0000 On 15/02/07, Dan Mahoney, System Admin wrote: > Hey all, > > I'm getting about a hundred more processes reported by ps aux|wc -l versus > the total number of processes in top. Is this a "normal" thing? My > system's been under some heavy load in the past couple days, but it's all > presumably stable now. ps -aux and top hide different processes by default. Use top -S to show all system processes, too. This is the same as doing a ps -auxH Read the manpages of both commands for more information of what all these options do. > > -Dan > HTH Christian