You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/02.uno/boards/uno-q/tutorials/05.ssh/ssh.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,13 +38,13 @@ SSH is a network protocol, not a tool itself. There are many different SSH tools
38
38
39
39
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:
40
40
41
-
```sh
41
+
```
42
42
ssh -V
43
43
```
44
44
45
45
You should see something like:
46
46
47
-
```sh
47
+
```
48
48
OpenSSH_9.9p2, LibreSSL 3.3.6
49
49
```
50
50
@@ -56,13 +56,13 @@ Which means it is working properly. ✅
56
56
57
57
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:
58
58
59
-
```sh
59
+
```
60
60
ssh -V
61
61
```
62
62
63
63
Which should return something like:
64
64
65
-
```sh
65
+
```
66
66
OpenSSH_for_Windows_x.x, LibreSSL 3.x.x
67
67
```
68
68
@@ -74,13 +74,13 @@ This means it is working properly. ✅
74
74
75
75
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:
76
76
77
-
```sh
77
+
```
78
78
ssh -V
79
79
```
80
80
81
81
Which should return something like:
82
82
83
-
```sh
83
+
```
84
84
OpenSSH_x.x Ubuntu-3ubuntu.x, OpenSSL x.x.x
85
85
```
86
86
@@ -95,7 +95,7 @@ To connect to an UNO Q board via SSH, we only need to know the **board name and
95
95
1. Open a terminal.
96
96
2. Run the following command:
97
97
98
-
```sh
98
+
```
99
99
ssh arduino@<boardname>.local #replace <boardname> with your board name
100
100
```
101
101
@@ -134,7 +134,7 @@ This is done by specifying a local path on your computer (e.g., `/User/documents
0 commit comments