| 2 | |
| 3 | SSH (**S**ecure **SH**ell) is very useful for development on the 825gen2. |
| 4 | |
| 5 | From a PC on the same network as the 825 you may use a Command Prompt or !PowerShell window and type: "ssh admin@<ip_address_of_825>" such as: |
| 6 | |
| 7 | {{{ |
| 8 | PS C:\> ssh admin@10.1.2.230 |
| 9 | admin@10.1.2.230's password: |
| 10 | card825gen2:~$ |
| 11 | }}} |
| 12 | |
| 13 | You will then have access to the terminal to run commands on the 825. For example "free -h" shows information about the 825 RAM memory usage. |
| 14 | |
| 15 | {{{ |
| 16 | card825gen2:~$ free -h |
| 17 | total used free shared buff/cache available |
| 18 | Mem: 3.8Gi 441Mi 3.2Gi 19Mi 202Mi 3.2Gi |
| 19 | Swap: 0B 0B 0B |
| 20 | }}} |