Use sshfs example (#2871)

* Use sshfs 

Example how to use sshfs instead of using samba.

* Update format
This commit is contained in:
ciotlosm 2017-06-23 23:03:01 +03:00 committed by Fabian Affolter
parent 463da35045
commit 52ab99289d

View File

@ -35,3 +35,12 @@ If you're coming from Rasbian or similar, use `root` rather than `pi` when conne
Permission denied (publickey,keyboard-interactive) Permission denied (publickey,keyboard-interactive)
``` ```
</p> </p>
<p class='note'>
If you install this addon you can use `sshfs` as well to access files from a remote system where you have git and your favourite editing tools installed.
```bash
$ mkdir ~/ha_config
$ sshfs -o allow_other,defer_permissions root@h[your_hassio_ip]:/config ~/ha_config
```
</p>