CentOS Stream 8にbash5.1をインストールする

環境
OSバージョンの確認
# cat /etc/redhat-release
CentOS Stream release 8

インストールの方法
1.bash5.1のダウンロード

# mkdir -p /opt/bash
# cd /opt/bash
# curl -LO http://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz

2.bash5.1ファイルを解凍します

# tar zxvf bash-5.1.tar.gz

3.bash5.1をコンパイルします

# cd bash-5.1/
# CC=cc ./configure
# make

4.bashをインストールします

# sudo make install
略
make[1]: ディレクトリ '/opt/bash/bash-5.1/examples/loadables' から出ます

5.bashバージョンを確認します

# bash -version
GNU bash, バージョン 5.1.0(1)-release (x86_64-pc-linux-gnu)

 

CentOS Stream 8

Posted by arkgame