Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/data/transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,13 @@ Note the leaving the `[dir]` argument blanck, mounts the user's home directory b
When you no longer need the mounted remote directory, you **must** unmount your remote file system:

=== "Linux"
Generic Linux distributions:
```bash
fusermount -u ~/ulhpc
fusermount -u ~/ulhpc
```
Ubuntu (22.04 or newer):
```bash
fusermount3 -u ~/ulhpc
Comment on lines +288 to +294

@gkaf89 gkaf89 Jul 13, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Generic Linux distributions:
```bash
fusermount -u ~/ulhpc
fusermount -u ~/ulhpc
```
Ubuntu (22.04 or newer):
```bash
fusermount3 -u ~/ulhpc
```bash
fusermount -u ~/ulhpc
```

```
=== "Mac OS X"
```
Expand Down
Loading