Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lee-pai-long/3eb61cc2c734903f3d9b to your computer and use it in GitHub Desktop.
Save lee-pai-long/3eb61cc2c734903f3d9b to your computer and use it in GitHub Desktop.

[LINUX MINT 17.2] Add Google Drive as device

Download and install google-drive-ocamlfuse

$ [sudo] add-apt-repository ppa:allessandro-strada/ppa && \
> [sudo] apt-get update && \
> [sudo] apt-get install google-drive-ocamlfuse

Add your user to the fuse group

$ [sudo] usermod -aG fuse $USER && \
> google-drive-ocamlfuse

You'll be redirected to google to allow the app to access to your account, once it's done you should be redirected to https://gd-ocaml-auth.appspot.com/success.html

Create a directory for your drive and mount it

$ mkdir ~/googledrive && \
> google-drive-ocamlfuse ~/googledrive

For permanently apply that add the last command as a startup command

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment