The libnfsidmap package contains a library to help with mapping id's, mainly for NFSv4.
This package is known to build and work properly using an LFS-9.1 platform.
Download (HTTP): https://fedorapeople.org/~steved/libnfsidmap/0.26/libnfsidmap-0.26.tar.bz2
Download MD5 sum: 2c0cf0e2b1665d51fa9a783679494888
Download size: 260 KB
Estimated disk space required: 3.3 MB
Estimated build time: less than 0.1 SBU
OpenLDAP-2.4.49 (client only)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libnfsidmap
Install libnfsidmap by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-static && make
This package does not come with a testsuite.
Now, as the root
user:
make install && mv -v /usr/lib/libnfsidmap.so.* /lib && ln -sfv ../../lib/$(readlink /usr/lib/libnfsidmap.so) /usr/lib/libnfsidmap.so
--disable-static
: This
switch prevents installation of static versions of the libraries.
mv -v /usr/lib/libnfsidmap.so.* ...: Move shared libraries into /lib so they are available before /usr is mounted.
Last updated on 2020-02-17 13:54:09 -0800