Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,25 @@ pihole -w <domain>

</table>
</details>

<details>
<summary>Mount Raspberry Pi filesystem on your machine</summary>
If you have Raspbian OS on your raspberry Pi with SSH enabled, it comes with a protocol
known as `sftp`, which stands for `SSH file transfer protocol`. You can mount your pi filesystem on your machine by using any file manager and adding the following network location:

```sh
sftp://<ip>:<folder_path>
```

To mount the pi filesystem on a directory rather than a separate network drive, you can use `SSHFS` or the SSH filesystem (which uses sftp internally):

```sh
# host machine
sudo apt install sshfs
mkdir pimount
sshfs <piuser>:<piIP>:<folderpath> pimount
```


</table>
</details>