From owner-freebsd-questions@FreeBSD.ORG Tue Jul 5 13:01:46 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8F95416A41C for ; Tue, 5 Jul 2005 13:01:46 +0000 (GMT) (envelope-from dopplecoder@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5634243D4C for ; Tue, 5 Jul 2005 13:01:46 +0000 (GMT) (envelope-from dopplecoder@gmail.com) Received: by zproxy.gmail.com with SMTP id z6so463602nzd for ; Tue, 05 Jul 2005 06:01:46 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=f/eicoCoy6x87mgPEI9EKp2QUxirMccS8U58WX80Roh1UBPqEM40cB2m5Osn1hRS3d1NybWGYT/e+AMQDr/YL4t+3WJNHLoW5zliGwJyc006ILaXgjk9wWCkuU/3uEekLsYqzIPUxL93yj7Nak5gNnfP32wUMUZcWdylGXrhdUQ= Received: by 10.36.50.18 with SMTP id x18mr1407475nzx; Tue, 05 Jul 2005 05:55:44 -0700 (PDT) Received: by 10.36.86.5 with HTTP; Tue, 5 Jul 2005 05:55:44 -0700 (PDT) Message-ID: <45d750d205070505556cc552b0@mail.gmail.com> Date: Tue, 5 Jul 2005 08:55:44 -0400 From: Aaron Peterson To: Efren Bravo In-Reply-To: <42CA8139.9040701@dhl.co.cu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <42CA8139.9040701@dhl.co.cu> Cc: freebsd-questions@freebsd.org Subject: Re: Some doubts to start X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aaron Peterson List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2005 13:01:46 -0000 On 7/5/05, Efren Bravo wrote: > Hello list, >=20 > How you will realize I'm new in unix. I've been reading about freeBSD > and I wish to know what is the meaning of: >=20 > 1-Font Server. > 2-NFS Server and NFS Server > 3-Ports >=20 > From freeBSD can I start a graphical environment like KDE and GNome. > Which of them would be recommended? >=20 > Best regards A font server is what it sounds like. It is a daemon that runs in a centralized location where you can install fonts and serve them out to multiple networked clients. A NFS server is a file server similar to MS Windows file sharing. NFS is in common use on Unix. Ports are a collection of 3rd party packages that you can compile and install via pre-written scripts on BSD. Generally you download a "ports tree" which is a directory tree full of these scripts. You find the one you want to install, cd to it's directory and type something like "make && make install" and it is downloaded compiled and installed in an automated fashion. There is more information on all of these things in the online FreeBSD handbook found here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html Enjoy!