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

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

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# mkdir -p /opt/bash
# cd /opt/bash
# curl -LO http://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz
# mkdir -p /opt/bash # cd /opt/bash # curl -LO http://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz
# mkdir -p /opt/bash
# cd /opt/bash
# curl -LO http://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# tar zxvf bash-5.1.tar.gz
# tar zxvf bash-5.1.tar.gz
# tar zxvf bash-5.1.tar.gz

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# cd bash-5.1/
# CC=cc ./configure
# make
# cd bash-5.1/ # CC=cc ./configure # make
# cd bash-5.1/
# CC=cc ./configure
# make

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# sudo make install
make[1]: ディレクトリ '/opt/bash/bash-5.1/examples/loadables' から出ます
# sudo make install 略 make[1]: ディレクトリ '/opt/bash/bash-5.1/examples/loadables' から出ます
# sudo make install
略
make[1]: ディレクトリ '/opt/bash/bash-5.1/examples/loadables' から出ます

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# bash -version
GNU bash, バージョン 5.1.0(1)-release (x86_64-pc-linux-gnu)
# bash -version GNU bash, バージョン 5.1.0(1)-release (x86_64-pc-linux-gnu)
# bash -version
GNU bash, バージョン 5.1.0(1)-release (x86_64-pc-linux-gnu)

 

CentOS Stream 8

Posted by arkgame