I have installed 18.7 on ubuntu 18.04. When I start the license manager, I get the error “no such file or directory” for everything in the /opt/pgi/linux86-64/flexlm directory. The files are clearly there and executables.
/opt/pgi/linux86-64/flexlm# ./lmutil
bash: ./lmutil: No such file or directory
Any idea what can cause this? The ubuntu is de facto a pristine install.
Often the issue is the lsb runtime library is missing:
$ ls -lap /lib64/ld*
lrwxrwxrwx 1 root root 32 Jan 15 2018 /lib64/ld-linux-x86-64.so.2 -> /lib/x86_64-linux-gnu/ld-2.19.so
lmutil is expecting to link to ld-lsb-x86-64.so.3, which doesn’t exist by default on fresh Ubuntu installations. You can symlink the existing ld library to it like so, or use apt-get to install the lsb package.