nilfs.org git repositories

Git repositories for NILFS development were moved to github. The new repositories are located on https://github.com/nilfs-dev/.

Cloning repository

You can get the latest NILFS utilities with git:
 $ git clone git://github.com/nilfs-dev/nilfs-utils.git
Standalone kernel modules of NILFS2 are also available: These repositories can be updated with "git pull" command. For details on git, please visit the following sites:

Preparations to build nilfs-utils

Since these repositories don't include any intermediate files, you need some preparations before running the configure script in utils:
 $ cd nilfs-utils
 $ aclocal
 $ autoheader
 $ libtoolize -c --force
 $ automake -a -c
 $ autoconf

This may require libtool, autoconf (-2.6 or later), and automake packages.

Then, you can build & install utils as usual:
 $ ./configure
 $ make
 $ sudo make install
Good luck!