lk/networking/ssh/sshfs.md

22 lines
249 B
Markdown
Raw Normal View History

2022-01-16 18:20:39 +00:00
---
title: "sshfs"
2022-01-26 22:35:07 +00:00
tags: [ "Documentation", "Networking" ]
2022-01-16 18:20:39 +00:00
---
2020-01-02 00:04:35 +00:00
# Mount
```bash
sshfs $USER@$IP_ADDRESS:$DIR
```
2020-01-02 00:04:35 +00:00
Various flags:
- Encryption: -C
- Map between local and remote user UIDs: -o idmap-user
# Unmount
```bash
fusermount3 -u $DIR
```
2020-01-02 00:04:35 +00:00