Projekt

Allgemein

Profil

Setup sshfs » Historie » Version 3

Jeremias Keihsler, 15.10.2021 11:02

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
10
h2. Preliminary Note
11
12
Some basic information may be found at
13
* https://superuser.com/questions/1567828/how-to-install-sshfs-in-centos-8-from-repository-using-package-manager-tool
14
* https://centos.pkgs.org/8/centos-powertools-x86_64/fuse-sshfs-2.8-5.el8.x86_64.rpm.html
15
16 2 Jeremias Keihsler
h2. Install sshfs
17 1 Jeremias Keihsler
18
<pre><code class="bash">
19
sudo dnf --enablerepo=powertools install fuse-sshfs
20
</code></pre>
21 3 Jeremias Keihsler
22
h2. mount/unmount sshfs
23
24
basically the same as getting to a ssh-shell
25
<pre><code class="bash">
26
sshfs user@example.com:/ /mnt/sshfs_space
27
umount mnt/sshfs_space
28
</code></pre>