Files
lk/networking/ssh/sshfs.md

25 lines
240 B
Markdown

---
title: sshfs
tags:
- networking
requires:
- ssh
---
# Mount
```sh
sshfs $USER@$IP_ADDRESS:$DIR
```
Various flags:
- Encryption: -C
- Map between local and remote user UIDs: -o idmap-user
# Unmount
```sh
fusermount3 -u $DIR
```