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

2021年12月21日

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

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# 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
# 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
# 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バージョンを確認します

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# rustc --version
rustc 1.54.0 (Red Hat 1.54.0-3.module_el8.5.0+1023+0c63d3d6)
# rustc --version rustc 1.54.0 (Red Hat 1.54.0-3.module_el8.5.0+1023+0c63d3d6)
# rustc --version
rustc 1.54.0 (Red Hat 1.54.0-3.module_el8.5.0+1023+0c63d3d6)

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# cat > test.rs << 'EOF'
fn main() {
println!("Study Rust Become smart !");
}
EOF
# cat > test.rs << 'EOF' fn main() { println!("Study Rust Become smart !"); } EOF
# cat > test.rs << 'EOF'
fn main() {
    println!("Study Rust Become smart !");
}
EOF

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# rustc test.rs
# ./test
Study Rust Become smart !
# rustc test.rs # ./test Study Rust Become smart !
# rustc test.rs
# ./test
Study Rust Become smart !

 

CentOS8

Posted by arkgame