Hi,
I found this info at
https://github.com/astrada/google-drive-ocamlfuse/wiki/Usage#since-0713
It works well.
Open terminal and
Run the following commands to install google-drive-ocamlfuse on
Ubuntu based operating systems.
sudo add-apt-repository ppa:alessandro-strada/ppa
sudo apt-get update
sudo apt-get install google-drive-ocamlfuse
use this command to sign-in to Google
google-drive-ocamlfuse
Now create the directory
mkdir GoogleDrive
Then you can mount the filesystem:
Mount drive command
google-drive-ocamlfuse ~/GoogleDrive
To unmount the filesystem, issue this command:
fusermount -u ~/GoogleDrive
Add this line to .Profile.txt to autostart
$ mount | grep "${HOME}/GoogleDrive" >/dev/null ||
/usr/bin/google-drive-ocamlfuse "${HOME}/GoogleDrive"&
Thanks,
Rob