Found this recently and thought others might find it useful/ I have Google Fi for my cell and they include 100GB online storage. Since Box dropped davfs support it's no lnger very useful from the desktop so I went looking for other options and found this:
How to mount your Google Drive.
The instructions include how to do this on Windows also but TL/DR so here's the needed steps boiled down:
1) Install ocamlfuse:
sudo add-apt-repository ppa:alessandro-strada/ppa
sudo apt update && sudo apt install google-drive-ocamlfuse
2) Run ocamlfuse in the command line:
google-drive-ocamlfuse
A sign-in window will open in your browser automatically where the user needs to sign-in and provide required access.
Authorize the ocamlfuse system to access files and folders on your google drive.
3) Make a mount point for Google drive:
mkdir ~/Gdrive
4) Mount google drive:
google-drive-ocamlfuse ~/googledrive
You can now open the Gdrive folder with Dolphin and access or add/delete files to/from your Google drive
Unmounting can be done with:
fusermount -u ~/Gdrive
but at least here, plain ole' umount works:
umount ~/Gdrive
How to mount your Google Drive.
The instructions include how to do this on Windows also but TL/DR so here's the needed steps boiled down:
1) Install ocamlfuse:
sudo add-apt-repository ppa:alessandro-strada/ppa
sudo apt update && sudo apt install google-drive-ocamlfuse
2) Run ocamlfuse in the command line:
google-drive-ocamlfuse
A sign-in window will open in your browser automatically where the user needs to sign-in and provide required access.
Authorize the ocamlfuse system to access files and folders on your google drive.
3) Make a mount point for Google drive:
mkdir ~/Gdrive
4) Mount google drive:
google-drive-ocamlfuse ~/googledrive
You can now open the Gdrive folder with Dolphin and access or add/delete files to/from your Google drive
Unmounting can be done with:
fusermount -u ~/Gdrive
but at least here, plain ole' umount works:
umount ~/Gdrive
Comment