Missing Packages

Hi folks. Brand new to AL. I’m needing to install two packages that I cannot find, and it’s a bit strange that they are missing:

  • rbenv
  • passenger

Anybody know how I can get these installed?

Update: I found passenger.

ruby 2.5.9p229 (2021-04-05 revision 67939) [x86_64-linux] is already installed in the minimal OS but it isn’t allowing me to install bundler:

ERROR:  While executing gem ... (Gem::FilePermissionError)
    You don't have write permissions for the /usr/bin directory.

That directory is owned by root:root which is strange. This definitely needs some attention.

Update: sudo yum install rubygem-bundler.noarch -y

Solved for rbenv:

sudo yum install git gcc-c++.x86_64 rubygem-bundler.noarch openssl-devel -y
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
cd ~/.rbenv && src/configure && make -C src