lk/networking/ssh/sshfs.md

23 lines
252 B
Markdown
Raw Normal View History

2022-01-16 18:20:39 +00:00
---
title: "sshfs"
2025-02-11 19:47:50 +00:00
tags: [ "Networking" ]
2025-02-11 17:04:03 +00:00
requires: [ "ssh" ]
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