Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] Update README
@ 2007-02-01 17:38 J. Bruce Fields
  2007-02-05  3:10 ` Neil Brown
  0 siblings, 1 reply; 3+ messages in thread
From: J. Bruce Fields @ 2007-02-01 17:38 UTC (permalink / raw)
  To: NeilBrown; +Cc: nfs

The README has bit-rotted: redhat and debian packaging scripts are no
longer included, util-linux mount is (in theory) no longer required, and
instructions on building from latest git would be useful.

Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
---

I'm autotool-clueless and have no clue about the "ltmain.sh" thing
mentioned in the last section; I just followed the bootstrapping
instructions in the commit message for 922d6cfd and found I needed a
copy of ltmain.sh to make it work.

 README |   40 +++++++++++++++-------------------------
 1 files changed, 15 insertions(+), 25 deletions(-)

diff --git a/README b/README
index 3fa3a58..f5a2aee 100644
--- a/README
+++ b/README
@@ -16,10 +16,9 @@ libraries.  They are available from
 Otherwise use --disable-nfsv4
 
 
-1. COMPILING WITHOUT PACKAGE MANAGEMENT
+1. COMPILING
 
-To compile without using a package management system, unpack the
-sources and run these commands:
+Unpack the sources and run these commands:
 
     # ./configure
     # make
@@ -28,38 +27,29 @@ To install binaries and documenation, run this command:
 
     # make install
 
-You will have to install the two NFS service scripts yourself.
-Service scripts for RedHat 6.x and 7.x are in etc/redhat.  They
-have been tested on RedHat 6.2 and 7.1.
 
+2. COMPILING FROM GIT
 
-2. COMPILING WITH RPM
+Getting nfs-utils for the first time:
 
-On RedHat 6.2 and 7.1, you can use
+	git clone git://linux-nfs.org/nfs-utils
 
-    # rpm -ta nfs-utils-1.0.1.tar.gz
+Updating to the latest head after you've already got it.
 
-to build the source and binary RPMs.
+	git pull
 
+Building requires that autotools be installed:
 
-3. COMPILING FOR DEBIAN
-
-The nfs-utils tree has an up-to-date debian directory, so the usual
-debian build scripts should work.  The simplest way to build binary
-debs, however, is simply to become root (or use fakeroot) and run:
-
-    # debian/rules binary
-
-
-4. REQUIRED VERSIONS OF OTHER TOOLS
-
-Proper NFS operation requires a 'mount' program from util-linux 2.11f
-or later.
+	aclocal -I aclocal
+	autoheader
+	automake
+	autoconf
 
+You may also need to copy ltmain.sh to the current directory if the
+above doesn't do that.  Usually there's a copy in
+/usr/share/libtool/ltmain.sh.  Finally, build as usual as above.
 
 Share And Enjoy!
 
     --	the nfs-utils developers
 	<nfs@lists.sourceforge.net>
-	26 Dec 2001
-
-- 
1.5.0.rc1.g72fe


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update README
  2007-02-01 17:38 [PATCH] Update README J. Bruce Fields
@ 2007-02-05  3:10 ` Neil Brown
  2007-02-05  4:29   ` J. Bruce Fields
  0 siblings, 1 reply; 3+ messages in thread
From: Neil Brown @ 2007-02-05  3:10 UTC (permalink / raw)
  To: J. Bruce Fields; +Cc: nfs

On Thursday February 1, bfields@fieldses.org wrote:
> The README has bit-rotted: redhat and debian packaging scripts are no
> longer included, util-linux mount is (in theory) no longer required, and
> instructions on building from latest git would be useful.

Thanks.

> 
> I'm autotool-clueless and have no clue about the "ltmain.sh" thing
> mentioned in the last section; I just followed the bootstrapping
> instructions in the commit message for 922d6cfd and found I needed a
> copy of ltmain.sh to make it work.

I just run
   ./autogen.sh

works every time... I might change that in the README.

NeilBrown

> -4. REQUIRED VERSIONS OF OTHER TOOLS
> -
> -Proper NFS operation requires a 'mount' program from util-linux 2.11f
> -or later.
> +	aclocal -I aclocal
> +	autoheader
> +	automake
> +	autoconf
>  
> +You may also need to copy ltmain.sh to the current directory if the
> +above doesn't do that.  Usually there's a copy in
> +/usr/share/libtool/ltmain.sh.  Finally, build as usual as above.
>  
>  Share And Enjoy!
>  
>      --	the nfs-utils developers
>  	<nfs@lists.sourceforge.net>
> -	26 Dec 2001
> -
> -- 
> 1.5.0.rc1.g72fe

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update README
  2007-02-05  3:10 ` Neil Brown
@ 2007-02-05  4:29   ` J. Bruce Fields
  0 siblings, 0 replies; 3+ messages in thread
From: J. Bruce Fields @ 2007-02-05  4:29 UTC (permalink / raw)
  To: Neil Brown; +Cc: nfs

On Mon, Feb 05, 2007 at 02:10:12PM +1100, Neil Brown wrote:
> On Thursday February 1, bfields@fieldses.org wrote:
> > The README has bit-rotted: redhat and debian packaging scripts are no
> > longer included, util-linux mount is (in theory) no longer required, and
> > instructions on building from latest git would be useful.
> 
> Thanks.
> 
> > 
> > I'm autotool-clueless and have no clue about the "ltmain.sh" thing
> > mentioned in the last section; I just followed the bootstrapping
> > instructions in the commit message for 922d6cfd and found I needed a
> > copy of ltmain.sh to make it work.
> 
> I just run
>    ./autogen.sh

Oh, good grief.  Sometimes I really miss the ovious....

> works every time... I might change that in the README.

OK, thanks!

--b.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-02-05  4:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-01 17:38 [PATCH] Update README J. Bruce Fields
2007-02-05  3:10 ` Neil Brown
2007-02-05  4:29   ` J. Bruce Fields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox