From owner-freebsd-fs@FreeBSD.ORG Thu Jul 12 03:40:34 2007 Return-Path: X-Original-To: freebsd-fs@freebsd.org Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4772F16A41F for ; Thu, 12 Jul 2007 03:40:34 +0000 (UTC) (envelope-from jaharkes@cs.cmu.edu) Received: from delft.aura.cs.cmu.edu (DELFT.AURA.CS.CMU.EDU [128.2.206.88]) by mx1.freebsd.org (Postfix) with ESMTP id 0F79D13C45D for ; Thu, 12 Jul 2007 03:40:33 +0000 (UTC) (envelope-from jaharkes@cs.cmu.edu) Received: from jaharkes by delft.aura.cs.cmu.edu with local (Exim 4.67) (envelope-from ) id 1I8pXd-0001wA-6n; Wed, 11 Jul 2007 23:40:33 -0400 Date: Wed, 11 Jul 2007 23:40:33 -0400 To: Eric Anderson Message-ID: <20070712034033.GO5824@delft.aura.cs.cmu.edu> Mail-Followup-To: Eric Anderson , freebsd-fs@freebsd.org References: <2c84c1de0707060800t21f3f993mfb53f7975a881ed4@mail.gmail.com> <1184090521301-git-send-email-jaharkes@cs.cmu.edu> <20070711223527.S97304@fledge.watson.org> <20070711223517.GH5824@delft.aura.cs.cmu.edu> <4695989B.7020200@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4695989B.7020200@freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) From: Jan Harkes Cc: freebsd-fs@freebsd.org Subject: Re: [PATCH Coda 0/5] X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2007 03:40:34 -0000 On Wed, Jul 11, 2007 at 09:57:31PM -0500, Eric Anderson wrote: > I've done the patches and buildworld/kernel, and have loaded the kernel > module. All seems well. Now I need to get the latest client running, > and begin some tests. Do you have any notes on the client, since the > port is essentially defunct? What's my fastest path to a working client? wget http://www.coda.cs.cmu.edu/pub/lwp/src/lwp-2.3.tar.gz wget http://www.coda.cs.cmu.edu/pub/rvm/src/rvm-1.14.tar.gz wget http://www.coda.cs.cmu.edu/pub/rpc2/src/rpc2-2.5.tar.gz wget http://www.coda.cs.cmu.edu/pub/rpc2/src/coda-6.9.1.tar.gz tar -xzf lwp-2.3.tar.gz ( cd lwp-2.3 ; ./configure ; gmake ; sudo gmake install ) tar -xzf rvm-1.14.tar.gz ( cd rvm-1.14 ; ./configure ; gmake ; sudo gmake install ) tar -xzf rpc2-2.5.tar.gz ( cd rpc2-2.5 ; ./configure ; gmake ; sudo gmake install ) tar -xzf coda-6.9.1.tar.gz ( cd coda-6.9.1 ; ./configure --prefix=/usr/coda ; gmake ; sudo gmake client-install ) # load the coda kernel module, kldload coda or something /usr/coda/sbin/venus-setup testserver.coda.cs.cmu.edu 100000 /usr/coda/sbin/venus ls /coda/testserver.coda.cs.cmu.edu/ If everything worked ok you should see 2 directories and a file named 'WELCOME'. lwp, rvm and rpc2 use automake so I think gmake is not really necessary anymore, but there may still be some gnu artifacts around, I think I removed the one more from rpc2 not too long ago. I still want to move the main Coda source to automake to simplify the build and get rid of the remaining gmake dependencies. As far as other build dependencies, I think the following are the minimal needed one, but they tend to come installed on most systems, pkg-config, libreadline5-dev, libncurses5-dev, g++, flex, bison or yacc (these were listed as build dependencies on a debian system) To remove everything from your system, the automake based libraries have a convenient uninstall target, for Coda itself everything 'should' have ended up under /usr/coda. I haven't actually tried installing outside of /usr or /usr/local in a while though. Jan