From owner-freebsd-questions@FreeBSD.ORG Thu Jun 19 15:04:28 2003 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 6FA7837B401 for ; Thu, 19 Jun 2003 15:04:28 -0700 (PDT) Received: from mailout.informatik.tu-muenchen.de (mailout.informatik.tu-muenchen.de [131.159.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1035C43F93 for ; Thu, 19 Jun 2003 15:04:27 -0700 (PDT) (envelope-from barner@in.tum.de) Received: by zi025.glhnet.mhn.de (Postfix, from userid 1000) id 0218C38100; Fri, 20 Jun 2003 00:04:24 +0200 (CEST) Date: Fri, 20 Jun 2003 00:04:24 +0200 From: Simon Barner To: Nagy =?iso-8859-1?B?TOFzemzz?= Zsolt Message-ID: <20030619220424.GA1125@zi025.glhnet.mhn.de> References: <3EF22FDF.9090704@netscape.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3EF22FDF.9090704@netscape.net> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-new at informatik.tu-muenchen.de cc: freebsd-questions@freebsd.org Subject: Re: Totally newbie - install problems 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: Thu, 19 Jun 2003 22:04:28 -0000 Hi, > But I need other > packages like "wxPython", "PyCrypto" and others for my work. I know I can > download the source code and compile them. I could also find binaries but > the dependency > tree is endless (and I had version problems too). I read the comparison > where someone said FreeBSD is even better than Debian in this matter. This > was one reason why I decided to use FreeBSD. I know the solution is out > there but I don't > know where it is. This is where the ports collection comes into play: First you can search it for the desired port: % cd /usr/ports % make search name=wxPython Port: py22-wxPython-2.4.0.7 Path: /usr/ports/x11-toolkits/py-wxPython % cd x11-toolkits/py-wxPython % make install clean (PyCrypto is also avialable in that collection). For more information regarding the ports collection you should consult the handbook http://www.freebsd.org/handbook/ports.html and/or ports(7). I'm looking for the FreeBSD equivalent of apt-get in > Debian. Probably I will need to setup several client computers in the end, > so an automated installation would be the best (download and install > required packages/ports for the selected package/port automatically). You can build your own packages with the ports collection (just use make package instead of make install). But if the machines will have exactly the same disk layout, setting up a master and cloning it with dd(1) might be more efficient. Regards, Simon