From a9e949d95fcb34a0447c514f8985768176a90b0b Mon Sep 17 00:00:00 2001 From: Doctor K Date: Tue, 24 Dec 2024 01:43:01 +0300 Subject: [PATCH] Update README (add command for installing wasm on an ARM-based CPU, add SSH service startup command) Signed-off-by: Doctor K --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 4c36eb6..9733442 100755 --- a/README.md +++ b/README.md @@ -56,6 +56,12 @@ an SSH server. sudo apt install openssh-server ``` +Start SSH Service using _systemctl_. + +```bash +sudo systemctl start ssh +``` + Enable SSH Service to Start on Boot: To ensure that the SSH service automatically starts after a reboot, you need to enable it using _systemctl_. @@ -158,6 +164,11 @@ rustup target add wasm32-unknown-unknown --toolchain nightly rustup target add wasm32-unknown-unknown --toolchain stable-x86_64-unknown-linux-gnu ``` +If you are trying to install WebAssembly (wasm) on an ARM-based processor like the ones in Raspberry Pi try this instead: +```bash +rustup target add wasm32-unknown-unknown --toolchain stable-aarch64-unknown-linux-gnu +``` + **_IF error try_** ```bash rustup target add wasm32-unknown-unknown --toolchain default