🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

github.com/hatchling/fuse_gdrive

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/hatchling/fuse_gdrive

v0.0.0-20150716150211-2f794db7068e
Source
Go
Version published
Created
Source

fuse_gdrive

A Fuse filesystem using the Google Drive API v2 in Go.

For the impatient

`$ go install github.com/asjoyner/fuse_gdrive`
  • make a mount point on your system
`$ mkdir /mnt/gdrive`
  • request to mount the filesystem
`$ fuse_gdrive /mnt/gdrive`
  • A browser window will open for you to grant permission to your files in Drive.
  • Once you accept, the client will sync locally the metadata about your files in drive, and make those files accessible at the mount point you specified.

But that didn't work?

The steps above assume that you're running the fuse client on the same computer the web browser is running on. If you get an error about failing to launch a web browser, and have to copy/paste the URL by hand, then you'll also have to ensure when your web browser attempts to HTTP POST to http://localhost:12345 that it gets connected to the fuse_gdrive client. Typically, you want a command like this:

$ ssh -L12345:localhost:12345 <remote_host>

FAQs

Package last updated on 16 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts