SSHFS: Difference between revisions

Added a note on how SFTP needs to be enabled to mount via fuse
Raboof (talk | contribs)
'known hosts'
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[https://github.com/libfuse/sshfs SSHFS] is a file system that allows users to mount and access remote files over SSH (Secure Shell) connections, providing secure and encrypted access to remote data.
[https://github.com/libfuse/sshfs SSHFS] is a [[Filesystems|file system]] that allows users to mount and access remote files over [[SSH]] (Secure Shell) connections, providing secure and encrypted access to remote data.
 
For more information on using SSHFS on NixOS, refer to {{NixOS Manual|name=NixOS Manual: Chapter - SSHFS File Systems|anchor=#sec-sshfs-file-systems}}.
 
You may want to connect to the machine 'interactively' once before configuring the connection declaratively, to add the remote key to your 'known hosts'.


== Configuration ==
== Configuration ==
Line 13: Line 17:
   ];
   ];
};
};
</syntaxhighlight>
</syntaxhighlight>{{Note|You will also need to enable SFTP on the server you are trying to connect to.}}
 
====== Note: You will also need to enable SFTP on the server you are trying to connect to. ======


== See also ==
== See also ==