From owner-freebsd-newbies@FreeBSD.ORG Fri May 28 10:28:21 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CD1616A4CE for ; Fri, 28 May 2004 10:28:21 -0700 (PDT) Received: from fidel.freesurf.fr (fidel.freesurf.fr [212.43.206.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 988C343D1F for ; Fri, 28 May 2004 10:28:20 -0700 (PDT) (envelope-from ogautherot@freesurf.fr) Received: from [62.240.243.229] (62-240-243-229.adsl.claranet.fr [62.240.243.229]) by fidel.freesurf.fr (Postfix) with ESMTP id B36872A6796; Fri, 28 May 2004 19:27:27 +0200 (CEST) From: Olivier Gautherot To: Chauncey Smith In-Reply-To: <001601c443a0$f0627830$9b02a8c0@WAND> References: <005401c442c1$5ef878c0$9b02a8c0@WAND> <1085599837.922.40.camel@ogautherot.og-lan.freesurf.fr> <001601c443a0$f0627830$9b02a8c0@WAND> Content-Type: text/plain Message-Id: <1085765292.40080.3.camel@ogautherot.og-lan.freesurf.fr> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 28 May 2004 19:28:12 +0200 Content-Transfer-Encoding: 7bit cc: freebsd-newbies@freebsd.org Subject: Re: Technical questions and Newbie experience. X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 May 2004 17:28:21 -0000 Hi Chauncey! About your port command: > !/bin/csh > sudo make && make install && make clean && rehash I think you should try: sudo (make && make install ; make clean; rehash) or packages that fail in the middle will unnecessarily take up space for their objects. By the way, a simple "make install" should do the same as "make && make install" (the port will be compiled anyway before it is installed). My cent worth... :-) Olivier