Code Monkey home page Code Monkey logo

fusermount-issue's Introduction

fusermount-issue package

This is an atom package. This package attempts to use sshfs installed on your system to mount a remote directory to a local mountpoint. The parameters are hard coded in lib/fusermount-issue.coffee:

  mountpath = "/home/wagoodman/.atom/mounts/localhost/tmp"
  hostname = "localhost"
  directory = "/tmp"
  username = "wagoodman"
  keyfile = "/home/wagoodman/.ssh/id_rsa"

Change these parameters as needed (user, paths, etc...). Essentially the command that the package runs is this:

  sshfs -o IdentityFile=[KEYFILE] -o cache=yes -o StrictHostKeyChecking=no [USERNAME]@[HOSTNAME]:[DIRECTORY] [MOUNTPOINT]

So in the above example:

  sshfs -o IdentityFile=/home/wagoodman/.ssh/id_rsa -o cache=yes -o StrictHostKeyChecking=no wagoodman@localhost:/tmp /home/wagoodman/.atom/mounts/localhost/tmp

After loading the module the issue can be reproduced by hitting Ctrl+Alt+O to see the issue. You should see an error indicating that:

fusermount: mount failed: Operation not permitted

The specific issue can be seen in the developer tools bar (in the console).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.