Malin Freeborn
ba8026e0c3
input examples are now given as ```bash input $ARG1 ``` While outputs use md's '> ' sign as a quote.
22 lines
249 B
Markdown
22 lines
249 B
Markdown
---
|
|
title: "sshfs"
|
|
tags: [ "Documentation", "Networking" ]
|
|
---
|
|
# Mount
|
|
|
|
```bash
|
|
sshfs $USER@$IP_ADDRESS:$DIR
|
|
```
|
|
|
|
Various flags:
|
|
|
|
- Encryption: -C
|
|
- Map between local and remote user UIDs: -o idmap-user
|
|
|
|
# Unmount
|
|
|
|
```bash
|
|
fusermount3 -u $DIR
|
|
```
|
|
|