Setup sshfs » Historie » Version 1
Jeremias Keihsler, 29.10.2024 09:39
1 | 1 | Jeremias Keihsler | h1. Setup sshfs |
---|---|---|---|
2 | |||
3 | h2. Requirements |
||
4 | |||
5 | To configure sshfs you will need the following: |
||
6 | * a installed and supported operating system (e.g. CentOS 8.x) |
||
7 | * root-access |
||
8 | * a fast internet connection |
||
9 | * repo: [[repo_epel|EPEL]] |
||
10 | |||
11 | h2. Preliminary Note |
||
12 | |||
13 | h2. Install sshfs |
||
14 | |||
15 | <pre><code class="bash"> |
||
16 | sudo dnf install fuse-sshfs |
||
17 | </code></pre> |
||
18 | |||
19 | h2. mount/unmount sshfs |
||
20 | |||
21 | basically the same as getting to a ssh-shell |
||
22 | <pre><code class="bash"> |
||
23 | sshfs user@example.com:/ /mnt/sshfs_space |
||
24 | umount mnt/sshfs_space |
||
25 | </code></pre> |