I'm thinking of switching my operating system from Windows and I use Google Drive desktop with all of my video work.
-
Exactly as answered but you should know that isn't needed as the Google Drive functionality can be integrated in the native Files (explorer) app. – ChanganAuto Oct 12 '21 at 19:22
-
There is a hack with running it using Wine. But it works bad. So you have to use Dropbox or Yandex.Drive (with GUI) as alternatives. – N0rbert Oct 12 '21 at 20:22
-
related + alternative https://askubuntu.com/questions/1115520/how-do-i-create-a-key-binding-that-allows-me-to-mount-my-google-drive/1115064#1115064 (see further below in this answer: https://askubuntu.com/a/1115064/72216 in short: you can use it like on windows, but not just like that. – Jacob Vlijm Oct 13 '21 at 10:09
-
"I'm thinking of switching my operating system from Windows" Congratulations! Great choice. Especially with nonsense that windows 11 is. – Vanity Slug - codidact.com Oct 14 '21 at 15:26
-
Does this answer your question? Is there a Google Drive client available? – karel Oct 15 '21 at 05:28
4 Answers
You do not need to install software for that; instead, you only need to connect your account using GNOME Online Accounts. It's a sign-on framework for GNOME. It supports popular online services like Google, Facebook, Microsoft, and Nextcloud, etc; The tool comes pre-installed with Ubuntu, so you don’t have to worry about manual installation. However, if, for some reason, the app isn’t installed, then run the following command to install it quickly.
$ sudo apt update && sudo apt install gnome-online-accounts
To add your Google Drive account, search for “Settings” in the GNOME menu; then:
Settings -> Online Accounts -> Add your google account.
In your file manager, you get your google drive mounted so you can store and retrieve data there.
As commented: this does not sync your file. You alter the contents on google drive itself so needs to be online.
If you want offline access you can add a tool like Insync (payware; multiple account support, desktop notification, symlink support), or Rclone (setup instructions; freeware; command-line to sync to Google Drive, but also Dropbox, Amazon S3, and OneDrive).
-
14This is the correct answer. However, it should be added that this method works differently from Windows, where Google Drive synchronizes part of your local drive with the cloud. The Windows way allows you to access the files even without an Internet connection. The described method only lets you access your Drive from your system, not synchronize it. You need to be connected to the internet for it to work. And yes, it shows a network connection in the Files manager that you can use like any other location. – Jos Oct 12 '21 at 21:51
-
-
2Yes, and thanks. As it stands this is an answer to the question. However, the OP mentions video work. On Windows, you can write a large video file to disk and have it synchronized to Google Drive in the background. On Ubuntu you can't and shouldn't write to the Drive directly. So this may conceivably be a limitation to OP. – Jos Oct 13 '21 at 10:40
-
Is the Online Accounts safe? Any ways to check the safety measures of this tool? – Herpes Free Engineer Dec 04 '22 at 12:39
-
@Rinzwind, could you add: Once mounted, where are the files if browsing from the command line? – CPBL Feb 14 '23 at 13:03
-
1@CPBL on your google drive ;-) It is not available from command line as this is a direct link to google drive. The "google drive mounted" is technically speaking "google drive connected" and not a mount when we mean a directory on disk – Rinzwind Feb 14 '23 at 14:54
If you are asking specifically about the Google Drive Desktop application, the answer is 'No': https://support.google.com/drive/answer/7329379#zippy=%2Csystem-requirements shows that Google product is currently (Oct 2021) available for Windows and OSX only.
If you are asking generally about Google Drive integration with Ubuntu Desktop there are several available methods for conveniently accessing Google Drive. Many of those work very well (I use Gnome's Online Accounts feature). These are not Google products, but are independent projects that use Google's API for access. None offers the full range of features (like sync) that the official Google Desktop application has, because some of those features are simply not available using the API

- 62,253
For Google Drive, this is a good client: https://github.com/odeke-em/drive as well as https://github.com/prasmussen/gdrive
These clients sync your Google Drive data to your local system
I use googledrive-ocamlfuse
. It is tricky to setup, but works like the Windows version. That is, is doesn't sync, but streams.
It also supports shared drives.

- 223
-
1The Windows version can be chosen not to stream, that's exactly the advantage ... – LL 3.14 Sep 09 '23 at 08:59