From owner-freebsd-newbies@FreeBSD.ORG Wed Mar 9 10:22:02 2005 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 D5F7E16A4CE for ; Wed, 9 Mar 2005 10:22:02 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB61E43D1F for ; Wed, 9 Mar 2005 10:22:00 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j29ALk0P028736; Wed, 9 Mar 2005 12:21:46 +0200 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) j29ALxHv013759; Wed, 9 Mar 2005 12:21:59 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)j29ALxUj013758; Wed, 9 Mar 2005 12:21:59 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Wed, 9 Mar 2005 12:21:59 +0200 From: Giorgos Keramidas To: John Que Message-ID: <20050309102158.GA13644@orion.daedalusnetworks.priv> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: cc: freebsd-newbies@freebsd.org Subject: Re: FreeBSD Kernel Source 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: Wed, 09 Mar 2005 10:22:02 -0000 On 2005-03-09 11:37, John Que wrote: > Hello, > > I am a totally newbie to FreeBSD. > > I want to download FreeBSD Kernel Source (I do not want to install the > OS itself, just look at the sources on a different (Linux) platform). > Is it possible ? Yes. > From where can I download it ? You can browse the source online at: http://cvsweb.freebsd.org/src/sys/ You can download a snapshot of the source from one of the FTP mirrors. For example, if you download all the ssys.?? files from ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/5.3-RELEASE/src/ you can join the files and view their contents as a normal tarball: % cat ssys.?? | tar tvf - Alternatively, if you want to keep an up to date copy of the source, you may find it easier to use CVSup. There are Linux binaries of CVSup at: ftp://ftp.freebsd.org/pub/FreeBSD/development/CVSup/binaries/ The process of obtaining the full source tree for FreeBSD would then be: - Download a binary of CVSup that works for you. - Copy a supfile from the FreeBSD samples. The source of these example supfiles can be found at: http://cvsweb.freebsd.org/src/share/examples/cvsup/ - Edit your supfile, as necessary. - Run cvsup. This should download an up to date version of the source parts you configure your supfile with. Giorgos