Hi What happens if you link the version 6 libraries to the non-existent (on your box) version5 libraries? e.g.
ln -s /usr/lib64/libncurses++.so.6.1 /usr/lib64/libncurses++.so.5 ln -s /usr/lib64/libncurses++w.so.6.1 /usr/lib64/libncurses++w.so.5 ln -s /usr/lib64/libncursesw.so.6.1 /usr/lib64/libncursesw.so.5 Harry -- Dr Harry Powell Chairman of European Crystallographic Association SIG9 (Crystallographic Computing) On 21 May 2018, at 03:21, Murpholino Peligro wrote: > Yes.... but that provides only the 32 bit library (look > https://superuser.com/questions/1267436/how-to-install-ncurses-devel-version-5-on-fedora-26). > From here (https://www.redhat.com/archives/rhl-list/2005-June/msg03451.html) > and the help provided,I suspected that the package to be installed needed the > specific name (i.e. blahblahblah.x86_64). > > HIH > > Murph > > > 2018-05-19 16:15 GMT-06:00 Kay Diederichs <kay.diederi...@uni-konstanz.de>: > good that you found this out, and solved the problem! > > For the record, _how_ did you find this out? > My guess would be that the command > dnf provides libncurses.so.5 > tells you that ncurses-compat-libs is the name of the package? Is that > correct? > > best, > Kay > > > > On Sat, 19 May 2018 00:16:24 -0600, Murpholino Peligro > <murpholi...@gmail.com> wrote: > > >Thanks. Somehow I do not have version 5 of the 64 library in /usr/lib64 > >[murph@localhost d01]$ ls -1l /usr/lib64/libncurses* > >-rw-r--r--. 1 root root 137936 Feb 26 09:24 /usr/lib64/libncurses++.a > >-rw-r--r--. 1 root root 409554 Feb 26 09:24 /usr/lib64/libncurses.a > >-rw-r--r--. 1 root root 137936 Feb 26 09:24 /usr/lib64/libncurses++_g.a > >-rw-r--r--. 1 root root 596714 Feb 26 09:24 /usr/lib64/libncurses_g.a > >lrwxrwxrwx. 1 root root 17 Feb 26 09:23 /usr/lib64/libncurses++.so -> > >libncurses++.so.6 > >-rw-r--r--. 1 root root 31 Feb 26 09:23 /usr/lib64/libncurses.so > >lrwxrwxrwx. 1 root root 19 Feb 26 09:23 /usr/lib64/libncurses++.so.6 -> > >libncurses++.so.6.1 > >lrwxrwxrwx. 1 root root 17 Feb 26 09:23 /usr/lib64/libncurses.so.6 -> > >libncurses.so.6.1 > >-rwxr-xr-x. 1 root root 76272 Feb 26 09:23 /usr/lib64/libncurses++.so.6.1 > >-rwxr-xr-x. 1 root root 205008 Feb 26 09:23 /usr/lib64/libncurses.so.6.1 > >-rw-r--r--. 1 root root 137936 Feb 26 09:24 /usr/lib64/libncurses++w.a > >-rw-r--r--. 1 root root 550858 Feb 26 09:24 /usr/lib64/libncursesw.a > >-rw-r--r--. 1 root root 137936 Feb 26 09:24 /usr/lib64/libncurses++w_g.a > >-rw-r--r--. 1 root root 781258 Feb 26 09:24 /usr/lib64/libncursesw_g.a > >lrwxrwxrwx. 1 root root 18 Feb 26 09:23 /usr/lib64/libncurses++w.so -> > >libncurses++w.so.6 > >-rw-r--r--. 1 root root 32 Feb 26 09:23 /usr/lib64/libncursesw.so > >lrwxrwxrwx. 1 root root 20 Feb 26 09:23 /usr/lib64/libncurses++w.so.6 > >-> libncurses++w.so.6.1 > >lrwxrwxrwx. 1 root root 18 Feb 26 09:23 /usr/lib64/libncursesw.so.6 -> > >libncursesw.so.6.1 > >-rwxr-xr-x. 1 root root 76280 Feb 26 09:23 /usr/lib64/libncurses++w.so.6.1 > >-rwxr-xr-x. 1 root root 286432 Feb 26 09:23 /usr/lib64/libncursesw.so.6.1 > > > >The missing library is installed with `sudo dnf install > >ncurses-compat-libs-6.1-4.20180224.fc28.x86_64 ` > > > >Thanks > > > > >