SSHFS: Difference between revisions

From Freephile Wiki
Created page with "Once you install '''sshfs''' with <code>sudo apt update && sudo apt install -y sshfs</code>, mounting the remote filesystem is as easy as <pre> mkdir ~/far_projects sshfs -o..."
 
link to GitHub project
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[File:Mount SSHFS.png|thumb]]
Once you install '''sshfs''' with <code>sudo apt update && sudo apt install -y sshfs</code>, mounting the remote filesystem is as easy as  
Once you install '''sshfs''' with <code>sudo apt update && sudo apt install -y sshfs</code>, mounting the remote filesystem is as easy as  


Line 12: Line 13:
== See Also ==
== See Also ==
https://help.ubuntu.com/community/SSHFS
https://help.ubuntu.com/community/SSHFS
https://github.com/libfuse/sshfs


[[Category:System Administration]]
[[Category:System Administration]]
[[Category:Filesystems]]
[[Category:Filesystems]]
[[Category:SSH]]
[[Category:SSH]]

Latest revision as of 21:03, 5 September 2025

Once you install sshfs with sudo apt update && sudo apt install -y sshfs, mounting the remote filesystem is as easy as

mkdir ~/far_projects
sshfs -o idmap=user $USER@far:/projects ~/far_projects

It can get more sophisticated with additional options, but that's all you need in a simple case.

Also, it all integrates with the Desktop Graphical User Interface (GUI), so you can do this in Nautilus too.

See Also

https://help.ubuntu.com/community/SSHFS

https://github.com/libfuse/sshfs