Skip to content

Commit bcdbbb0

Browse files
committed
Update ssh.md
1 parent bcd1d51 commit bcdbbb0

File tree

1 file changed

+9
-9
lines changed
  • content/hardware/02.uno/boards/uno-q/tutorials/05.ssh

1 file changed

+9
-9
lines changed

content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/ssh.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ SSH is a network protocol, not a tool itself. There are many different SSH tools
3838

3939
macOS features a built-in `ssh` tool based on [OpenSSH](https://www.openssh.com/), and **should work out of the box**. Check if the tool is present on your machine by running the following in a terminal:
4040

41-
```sh
41+
```
4242
ssh -V
4343
```
4444

4545
You should see something like:
4646

47-
```sh
47+
```
4848
OpenSSH_9.9p2, LibreSSL 3.3.6
4949
```
5050

@@ -56,13 +56,13 @@ Which means it is working properly. ✅
5656

5757
Later versions of Windows (10+) include SSH clients as well, with no requirement to install additional tools. To verify tools are installed, open a terminal on your Windows machine, and type:
5858

59-
```sh
59+
```
6060
ssh -V
6161
```
6262

6363
Which should return something like:
6464

65-
```sh
65+
```
6666
OpenSSH_for_Windows_x.x, LibreSSL 3.x.x
6767
```
6868

@@ -74,13 +74,13 @@ This means it is working properly. ✅
7474

7575
Many Linux OS include SSH clients, with no requirement to install additional tools. To verify tools are installed, open a terminal on your Ubuntu machine, and type:
7676

77-
```sh
77+
```
7878
ssh -V
7979
```
8080

8181
Which should return something like:
8282

83-
```sh
83+
```
8484
OpenSSH_x.x Ubuntu-3ubuntu.x, OpenSSL x.x.x
8585
```
8686

@@ -95,7 +95,7 @@ To connect to an UNO Q board via SSH, we only need to know the **board name and
9595
1. Open a terminal.
9696
2. Run the following command:
9797

98-
```sh
98+
```
9999
ssh arduino@<boardname>.local #replace <boardname> with your board name
100100
```
101101

@@ -134,7 +134,7 @@ This is done by specifying a local path on your computer (e.g., `/User/documents
134134

135135
To **push** a file, use the command below:
136136

137-
```sh
137+
```
138138
scp test-transfer.txt arduino@<boardname>.local:/home/arduino/
139139
```
140140

@@ -144,7 +144,7 @@ This will transfer the `test-transfer.txt` file in the same directory you are ru
144144

145145
To **pull** a file, use the command below:
146146

147-
```sh
147+
```
148148
scp arduino@<boardname>.local:/home/arduino/test-transfer.txt ./
149149
```
150150

0 commit comments

Comments
 (0)