Date: Wed, 11 Jul 2007 23:40:33 -0400 From: Jan Harkes <jaharkes@cs.cmu.edu> To: Eric Anderson <anderson@freebsd.org> Cc: freebsd-fs@freebsd.org Subject: Re: [PATCH Coda 0/5] Message-ID: <20070712034033.GO5824@delft.aura.cs.cmu.edu> In-Reply-To: <4695989B.7020200@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>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070712034033.GO5824>