Last active
February 26, 2024 05:44
-
-
Save tinkertims/b4beeb16608c4c6321e7 to your computer and use it in GitHub Desktop.
Install byobu to CentOS 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm | |
rpm -ivh epel-release-7-5.noarch.rpm | |
sudo yum install byobu -y --enablerepo=epel-testing |
Is it possible to install the latest Byobu version (5.133 I believe) on CentOS7? I find the version in EPEL (5.73) seriously lacking in comparison to the latest! If not by RPM, maybe by compiling it locally on my el7 install? Doable?
centos 6 or 7 can use miniconda install byobu 5.133:
conda install -c conda-forge byobu
Why not this:
yum -y install epel-release yum -y install byobu
works for me.
If yum -y install byobu
doesn't find Byobu in EPEL, maybe EPEL is disabled. Try yum -y --enablerepo=epel install byobu
(this was needed to me).
dnf install epel-release
dnf -y --enablerepo=epel install byobu
yum -y --enablerepo=epel install byobu
yum install byobu
dnf install byobu
None of the above work in CentOS 9 stream. But epel-release already installed
Package epel-release-9-4.el9.noarch is already installed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think for Centos 8 this is the new
epel
package:https://dl.fedoraproject.org/pub/epel/8/Everything/x86_64/Packages/e/epel-release-8-8.el8.noarch.rpm
works for me!