off-topic

wevrem 2026-05-20T04:58:29.072649Z

Has anyone installed rlwrap on Amazon linux?

practicalli-johnny 2026-05-20T08:33:21.750269Z

I assume rlwrap isnt available via 'yum' or 'dnf'. You could try downloading the Fedora package of rlwrap and installing the package locally. Or download the https://github.com/hanslub42/rlwrap/releases. If it provides a single binary then add it to a directory on the execution path (or install https://github.com/devmatteini/dra to simplify that). If its only source code, then I assume make and make install commands will do the trick

wevrem 2026-05-20T12:49:13.418539Z

All the suggestions from search produced 404's when I tried to download, so I did install from source.

sudo yum install -y autoconf automake gcc ncurses-devel readline-devel
wget  -O rlwrap.zip
unzip rlwrap.zip
cd rlwrap-master
autoreconf --install
./configure --without-libptytty
make
sudo make install

👍 1