From owner-freebsd-questions@FreeBSD.ORG Fri Apr 1 14:17:43 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8416616A4CE for ; Fri, 1 Apr 2005 14:17:43 +0000 (GMT) Received: from mail1.acecape.com (mail1.acecape.com [66.114.74.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDE6843D6B for ; Fri, 1 Apr 2005 14:17:42 +0000 (GMT) (envelope-from lists@natserv.com) Received: from zoraida.natserv.net (p65-147.acedsl.com [66.114.65.147]) by mail1.acecape.com (8.12.11/8.12.11) with ESMTP id j31EHgBM015439; Fri, 1 Apr 2005 09:17:42 -0500 Date: Fri, 1 Apr 2005 09:21:06 -0500 (EST) From: Francisco Reyes X-X-Sender: fran@zoraida.natserv.net To: Kiffin Gish In-Reply-To: <007301c53685$b4c33750$9900000a@ZGISH> Message-ID: <20050401091139.V59213@zoraida.natserv.net> References: <007301c53685$b4c33750$9900000a@ZGISH> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-questions@freebsd.org Subject: Re: xorg stuff needed on web server? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Apr 2005 14:17:43 -0000 On Fri, 1 Apr 2005, Kiffin Gish wrote: > I noticed that there is a bunch of xorg installed on my web server for some > reason: They may be dependencies > xorg-clients-6.8.2 X client programs and related files from X.Org ... > I was just wondering, do I really need all that xorg stuff for a simple web > server Probably not. Perhaps you installed a package that required them. >, or is it safe to run a pkg_delete on these items without breaking > any other packages? There is a port, pkg_tree which you can install and see all dependencies. There are other ways, but I find pkg_tree to be easy to use/visualize. > unless xorg is available, so does anyone know which ones these might be? There are many :-( You can also cd /var/db/pkb/ cat +REQUIRED_BY That will show you which packages depend on a particular port.. To find which ports depend on xorg you could try cd /var/db/pkg find . -name "+REQUIRED_BY" -exec grep -li xorg {} \; Hope that helps. -- http://stringsutils.com Utility for developers. Compute length, MD5, CRC and more.