Debian GNU/Linux: Difference between revisions

From Aquarium-Control
Jump to navigation Jump to search
(Created page with "Following are the steps to install the toolchain on a Debian 11 system: Install the necessary packages for building and compiling Rust programs: <code> sudo apt install build-essential curl -y </code> Download and install Rust: <code> curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh </code> Update current shell: <code> source ~/.cargo/env </code> Verify Rust installation: <code> rustc --version </code> As of December 2024, Rust version is 1.83.0. Inst...")
 
No edit summary
Line 4: Line 4:
<code>
<code>
sudo apt install build-essential curl -y
sudo apt install build-essential curl -y
</code>
Install OpenSSL Development Files:
<code>
sudo apt install libssl-dev pkg-config
</code>
</code>



Revision as of 14:00, 30 December 2024

Following are the steps to install the toolchain on a Debian 11 system:

Install the necessary packages for building and compiling Rust programs: sudo apt install build-essential curl -y

Install OpenSSL Development Files: sudo apt install libssl-dev pkg-config

Download and install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Update current shell: source ~/.cargo/env

Verify Rust installation: rustc --version

As of December 2024, Rust version is 1.83.0.

Install git: apt-get install git

Clone the git repositories into /usr/local/src:

Verify if control application, client application and test server can be build using cargo build.