README.md updates - compatibility table

This commit is contained in:
Andrew Schott 2024-06-15 00:43:31 -05:00
parent 0863be6a6e
commit 9dee5e6a56

View file

@ -57,17 +57,17 @@ The [official documentation from Debian](https://wiki.debian.org/Rust) states on
Using apt packages:
```
sudo apt update
sudo apt upgrade
sudo apt install rustc cargo rustfmt
sudo apt update -y
sudo apt upgrade -y
sudo apt install rustc cargo rustfmt -y
```
Using rustup:
```
sudo apt update
sudo apt upgrade
sudo apt install curl build-essential gcc make
sudo apt update -y
sudo apt upgrade -y
sudo apt install curl build-essential gcc make -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
@ -92,7 +92,7 @@ sudo dnf install rust cargo -y
The [official documentation from OpenSuSE.org](https://en.opensuse.org/Rust) states to use rustup, so here it is:
```
sudo zypper install rustup && rustup toolchain install stable
sudo zypper install rustup -y && rustup toolchain install stable
```
## **OSUPDATE ACQUISITION, COMPILATION AND USAGE**