User Tools

Site Tools


login:sshfs-win:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
login:sshfs-win:start [2020/03/16 15:14] paulglogin:sshfs-win:start [2021/12/01 10:33] (current) namtran
Line 1: Line 1:
-====== SSHFS - Windows ======+====== Mapping network drive via SSH for Windows ====== 
 + 
 +===== SSHFS Windows =====
  
-Mapping network drive via SSHFS for Windows 
  
 === Requirements: === === Requirements: ===
Line 9: Line 10:
  
   * Download and install the latest version of SSHFS For Windows   * Download and install the latest version of SSHFS For Windows
-    https://github.com/billziss-gh/sshfs-win+    https://github.com/billziss-gh/sshfs-win/releases/latest
  
-=== Basic Usage ===+==== Basic Usage ====
  
 Once you have installed WinFsp and SSHFS-Win you can map a network drive to a directory on an SSH host using Windows Explorer. Once you have installed WinFsp and SSHFS-Win you can map a network drive to a directory on an SSH host using Windows Explorer.
Line 25: Line 26:
  
 In order to unmap the drive, right-click on the drive icon in Windows Explorer and select Disconnect. In order to unmap the drive, right-click on the drive icon in Windows Explorer and select Disconnect.
- 
- 
-=== More Examples === 
  
  
Line 33: Line 31:
   * The ''sshfs.r'' prefix maps to ''HOST:/PATH'' on the SSHFS host (i.e. relative to the ''HOST'''s root directory).   * The ''sshfs.r'' prefix maps to ''HOST:/PATH'' on the SSHFS host (i.e. relative to the ''HOST'''s root directory).
  
 +=== More Examples ===
  
   * Mapping www from indigo use \\sshfs\REMUSER@indigo.eecs.yorku.ca\www   * Mapping www from indigo use \\sshfs\REMUSER@indigo.eecs.yorku.ca\www
Line 57: Line 56:
   Enter the password for sshfs.r:   Enter the password for sshfs.r:
   The command completed successfully.    The command completed successfully. 
 +
 +=== Resolving permission issues when files/folders created using sshfs ===
 +
 +When a user uses sshfs and creates a file/folder on the server the default permission will be:
 +
 +<code>
 +-rwx------ 1 namtran tech 0 Dec 18 10:37 test1.txt
 +</code>
 +
 +This is okay for home directory but for shared files/foldres you want group to also have access, so you need to modify the registry to change the umask:
 +
 +<code>
 +[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\WinFsp\Services\sshfs.r]
 +CommandLine value:
 +svc %1 %2 %U -o create_dir_umask=007 -o create_file_umask=117
 +</code>
 +
 +Now when you create a file/folder, the permissions will be:
 +
 +<code>
 +-rw-rw----  1 namtran tech     0 Dec 18 10:36 test2.txt 
 +</code>
 +
 +
 +
 +
login/sshfs-win/start.1584386096.txt.gz · Last modified: 2020/03/16 15:14 by paulg