1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
* Required packages
- libuuid-devel or uuid-dev
- libmount-devel (fedora 14 and later)
* How to compile
$ ./configure
$ make
To link mount.nilfs2 and umount.nilfs2 helper programs with libmount
library, install libmount-devel package and run the configure script
with --enable-libmount option:
$ ./configure --enable-libmount
This option is set by default if /etc/mtab is a symlink to
/proc/mounts in your system.
If your system is a 64-bit architecture and libraries are installed
into /usr/lib64 instead of /usr/lib, change the library directory with
--libdir option:
$ ./configure --libdir=/usr/lib64
* How to get development sources
$ cd your-work-directory
$ git clone git://github.com/nilfs-dev/nilfs-utils.git
Before compiling the development sources, you need to run
autoconf/automake tools. This is not required for packaged sources
unless you changed the configuration.
$ cd nilfs-utils
$ aclocal && autoheader && libtoolize -c --force && automake -a -c && autoconf
|