diff --git a/README.md b/README.md index 9386fbc..ee7970a 100644 --- a/README.md +++ b/README.md @@ -271,3 +271,25 @@ pihole -w + +
+ Mount Raspberry Pi filesystem on your machine + 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://: + ``` + +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 :: pimount +``` + + + +