During installation on Debian Linux the following error is returned;
Creating symbolic links
/usr/netvault/util/nvsetstanza: error while loading shared libraries: libnv6.so: cannot open shared object file: No such file or directory
Failed to set first configuration value
Post install script failed!
On checking the dependancies of nvsetstanza libnv6.so is reported as not found;
ldd /usr/netvault/util/nvsetstanza
"libnv6.so = > not found"
But libnv6.so exists in /usr/lib
The environment is set in such a way that /usr/lib/ is not in the default search path for libraries. To verify perform the following;
export LD_LIBRARY_PATH=/usr/lib/
ldd /usr/netvault/util/nvsetstanza
If libnv6.so is now located in the output then this confirms this scenario.
The default setting is that /usr/lib/ is included in the search path for libraries so the system administrator need to be consulted on why it is not included and how it can be included in such a way that does not impact any other software on the node.