Actions

 Language:
 RSS flow:


SSHFS - Work on a distant filesystem


sshfs installation:

    Via synaptic:
      sshfs package installation:
        apt-get install sshfs

Mount a FileSystem:

    For root user only:
      sshfs user@server:/distant/path /local/path
    In this case, only the root user can see and act on distant FileSystem
     
    Pour tous les utilisateurs:
      sshfs user@server:/distant/path /local/path -o allow_other
    In this case, all users will see and act on distant FileSystem
     

 

Go Back