Update README (add command for installing wasm on an ARM-based CPU, add SSH service startup command)
Signed-off-by: Doctor K <doctor_whoami@ghostchain.io>
This commit is contained in:
parent
3fad815039
commit
a9e949d95f
11
README.md
11
README.md
@ -56,6 +56,12 @@ an SSH server.
|
|||||||
sudo apt install openssh-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
|
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_.
|
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
|
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_**
|
**_IF error try_**
|
||||||
```bash
|
```bash
|
||||||
rustup target add wasm32-unknown-unknown --toolchain default
|
rustup target add wasm32-unknown-unknown --toolchain default
|
||||||
|
Loading…
Reference in New Issue
Block a user