You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
981 B
981 B
weight | title | date | draft | summary | categories | tags | ||
---|---|---|---|---|---|---|---|---|
4 | sshfs: Cómo usarlo | 2021-06-30T21:00:41+0200 | true | sshfs |
|
|
sshfs: modos de uso
{{< admonition type=abstract title="Referencias" open=true >}}
{{< /admonition >}}
Ante todo tenemos que tener instalado sshfs
:
sudo apt install sshfs
Supongamos que queremos mapear un directorio de un usuario remoto (remuser
) en nuestro directorio personal.
Creamos un directorio que funcionará como punto de montaje en local y montamos el remoto:
mkdir -p ~/mnt/<remote_name>
sshfs remuser@remote_host:/home/remuser ~/mnt/remote_host
Montarlo como root
sudo sshfs -o allow_other,default_permissions,IdentityFile=~/.ssh/id_rsa root@xxx.xxx.xxx.xxx:/ /mnt/droplet
Desmontamos con umount
Entrada en fstab
sshfs#root@xxx.xxx.xxx.xxx:/ /mnt/droplet