RHEL / CentOS / Rocky Linux / Oracle Linux platform notes
Installing NCurses on RHEL, CentOS, Rocky Linux and Oracle Linux
- Package with OS code
l64xl217
needs NCurses version 5 - Package with OS code
l64xl228
needs NCurses version 6
After installing the Genero package, execute the ldd -r command on $FGLDIR/bin/fglrun, to identify what version of the NCurses shared library is required, and install the corresponding NCurses package if needed.
Installing NCurses V6 on Red Hat Enterprise Linux, CentOS, Rocky Linux or Oracle Linux
# dnf install ncurses-libs
The ncurses-libs
package includes the libncursesw.so.6
library for UTF-8 support in text mode.
Installing NCurses V5 on Red Hat Enterprise Linux 8+ and Oracle Linux 8+
# dnf install ncurses-compat-libs
The ncurses-compat-libs
package includes the
libncursesw.so.5 library for UTF-8 support in text mode.
Installing NCurses V5 on Rocky Linux 8+
# dnf config-manager --set-enabled devel
# dnf install ncurses-compat-libs
The ncurses-compat-libs
package includes the
libncursesw.so.5 library for UTF-8 support in text mode.
Installing NCurses V5 on Red Hat Enterprise Linux 7 / CentOS 7
# yum install ncurses-libs
The ncurses-libs
package includes the libncursesw.so.5
library for UTF-8 support in text mode.