Usage - astrada/google-drive-ocamlfuse GitHub Wiki
First, you must set up OAuth 2.0:
- Activate the
Google Drive API. - Create an OAuth client ID.
- Choose
DesktopasApplication type. - Set the
Nameto anything you like.
This way you will get a Client ID and Client secret that you can use to
access your Drive. To authorize google-drive-ocamlfuse, pass the client ID
and the client secret on the command line, e.g.:
google-drive-ocamlfuse -id xxxxxxxxxx.apps.googleusercontent.com -secret XXX-YYY-ZZZ
This command will create the default application directory
(~/.gdfuse/default), containing the configuration file config (see the
wiki
page
for more details about configuration). And it will start a web browser to
obtain authorization to access your Google Drive. This way, you can modify the
default configuration before mounting the filesystem.
Then, you can choose a local directory to mount your Google Drive (e.g.: ~/GoogleDrive).
Create the mount point, if it doesn't exists:
mkdir ~/GoogleDrive
Then, you can mount the filesystem:
google-drive-ocamlfuse ~/GoogleDrive
If you have more than one account, you can run:
google-drive-ocamlfuse -label [label] ~/GoogleDrive
Using label to distinguish different accounts. The program will use the
directory ~/.gdfuse/[label] to host the configuration, the application
state, and the file cache. No file is shared among different accounts, so you
can have a different configuration for each one.
To unmount the filesystem, issue this command:
fusermount -u ~/GoogleDrive
Options
Run google-drive-ocamlfuse -help to get all the command options available. To find more details about -o mount options, you can refer to this page. Non-standard mount option gdfroot can be used to specify a custom path to the configuration directory (default is $HOME/.gdfuse).
Since 0.7.5
-docsmode: This option can be used to quickly set Google Docs config options. Supported values are:
libreoffice: setsdownload_docs=truedocument_format=odtdrawing_format=pngform_format=zippresentation_format=odpspreadsheet_format=odsapps_script_format=json
msoffice: setsdownload_docs=truedocument_format=docxdrawing_format=pngform_format=zippresentation_format=pptxspreadsheet_format=xlsxapps_script_format=json
desktop: setsdownload_docs=truedocument_format=desktopdrawing_format=desktopform_format=desktoppresentation_format=desktopspreadsheet_format=desktopapps_script_format=desktop
off: setsdownload_docs=false
Since 0.7.11
-serviceaccountpath: This option can be used to specify the path of the JSON file containing the credentials of a service account-serviceaccountuser: This option can be used to specify the email of a G Suite user to impersonate (with the service account specified by the-serviceaccountpathoption)
Since 0.7.12
-log_to: Specifies where the logs are going to be written. It can bestdout,stderr, or an absolute path-scope: Specifies a custom Drive API scope-redirect_uri: Specifies a customredirect_urifor the OAuth2 flow
Since 0.7.13
-device: Use OAuth2 for Devices authorization flow
Since 0.7.32
-port: This option can be used to specify a port for the embedded HTTP server, that will receive the verification code from Google during authorization. The default is 8080.