CentOS 8.5にRust をインストールする

2021年12月21日

環境
# cat /etc/redhat-release
CentOS Linux release 8.5.2111

インストールの方法
1.有効になっているRustバージョンを確認します

# dnf module list rust-toolset
CentOS Linux 8 - AppStream
Name                                  Stream                            Profiles                           Summary
rust-toolset                          rhel8 [d]                         common [d]                         Rust

Hint: [d]efault, [e]nabled, [x]disabled, [i]nstalled

2.Rustをインストールします
# dnf module -y install rust-toolset:rhel8

3.Rustバージョンを確認します

# rustc --version
rustc 1.54.0 (Red Hat 1.54.0-3.module_el8.5.0+1023+0c63d3d6)

4.テストプログラムを作成します

# cat > test.rs << 'EOF'
fn main() {
    println!("Study Rust Become smart !");
}
EOF

5.テストファイルを実行します

# rustc test.rs
# ./test
Study Rust Become smart !

 

CentOS8

Posted by arkgame