mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 21:19:35 +00:00
* docs: Add CLI article (en) * docs: Update frames article (en) * docs: Add article about part models (en) * docs: Update Raspberry Pi article (en) * docs: Remove unused raspberry3.jpg * docs: Add COEX Pix article (en) * docs: Add CopterHack 2019 article (en) * docs: Update connection article (en) * docs: Add programming overview (en) * docs: Add anchor in modes article * docs: Fix link in auto_setup, add editing ID (en) * docs: Rearrange summary to match Russian version (en) * docs/camera_frame: Add link to cli#editing (en) * docs/wifi: Fix link to next article (en) * docs: Add "next" links where appropriate (en)
30 lines
1.1 KiB
Markdown
30 lines
1.1 KiB
Markdown
SSH access to Raspberry Pi
|
|
===
|
|
|
|
[RPi image](image.md) is configured to be accessed via SSH for editing files, loading data and running programs.
|
|
|
|
For the SSH access, it is necessary [to connect to Raspberry Pi over Wi-Fi](wifi.md) (connection via an Ethernet cable is also possible).
|
|
|
|
In Linux or macOS, run the command prompt, and execute command:
|
|
|
|
```bash
|
|
ssh pi@192.168.11.1
|
|
```
|
|
|
|
Password: `raspberry`.
|
|
|
|
For SSH access from Windows, you may use [PuTTY] (https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html).
|
|
|
|
You can also gain SSH access from your smart-phone using the [Termius] app (https://www.termius.com).
|
|
|
|
Read more: https://www.raspberrypi.org/documentation/remote-access/ssh/README.md
|
|
|
|
Web access
|
|
----------
|
|
|
|
Starting with version 0.11.4 [of the image](image.md), access to the shell is also available via a web browser (using [Butterfly](https://github.com/paradoxxxzero/butterfly)). To gain access, open web page http://192.168.11.1, and select link *Open web terminal*:
|
|
|
|
<img src="../assets/butterfly.png">
|
|
|
|
**Next**: [Command-line interface](cli.md)
|