From eb97d8ff18e3367ebc47ab3598a374553fcf9ab5 Mon Sep 17 00:00:00 2001 From: L04DB4L4NC3R Date: Wed, 14 Oct 2020 07:16:42 +0000 Subject: [PATCH] sshfs and sftp to mount the raspberry pi filesystem --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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 +``` + + + +