Google disk for linux

Google drive в Linux с автоматической синхронизацией

Google drive — подключаем гугл диск с постоянной автоматической синхронизацией в Linux.

Не раз пришлось подключать гугл диск в Linux. Путём проб различных способов, был определён единственный и 100% рабочий, способ с автоматической синхронизацией.

Этот способ подойдёт всем кто использует операционную систему Debian и основанные на нем, такие как Linux Mint, Ubuntu и различные их модификации, сборки.

Вся настройка будет произведена в терминале.

Каждое действие будет максимально описано. Важно не только сделать но и понимать, что и зачем ты делаешь и какой результат это даст. Каждое действие и команда.

В качестве основы будем использовать пакет google-drive-ocamlfuse

Устанавливаем google-drive-ocamlfuse

Для тех у кого Debian устанавливаем пакет который позволит добавлять репозитории от Ubuntu

apt-get install software-properties-common

Далее для всех все одинаково.

Для установки пакета google-drive-ocamlfuse открываем терминал и подключаем дополнительный репозиторий, в котором будет нам нужный пакет

sudo add-apt-repository ppa:alessandro-strada/ppa

добавляем репозиторий google-drive

Производим установку нужного нам пакета

sudo apt-get install google-drive-ocamlfuse

Теперь создаём папку с которой будут синхронизироваться наши файлы на Google диске.

Я создал папку google-disk в домашней директории командой

создаем папку для google-drive

Запускаем программу командой в терминале:

google-drive-ocamlfuse ~/google-disk/

После запуска откроется окно браузера в котором мы должны будем войти в свой аккаунт google.

вводим логин гугл аккаунта

вводим пароль гугл аккаунта

Разрешаем запускаться и работать программе с нашим аккаунтом google

даем разрешение для работы с Google drive программы ocamlfuse

По окончании ваших действий вы увидите такую страницу

Доступ успешно предоставлен

Там написано — «Доступ успешно предоставлен».

Теперь на вашем компьютере, начнётся синхронизация файлов с папкой в которую создали ранее.

Это как правило занимает продолжительное время.

Настраиваем автоматический запуск Google диска

После перезагрузки операционной системы синхронизация ваших файлов не будет работать. Так как по умолчанию, при старте системы, программа синхронизации и подключения к облачному хранилищу и не работает.

Давайте настроим автоматический запуск программы.

Откроем настройки операционной системы и войдем в пункт Сеансы и запуск, там выберем вкладку автозапуск приложений и нажмем в низу добавить

добавление программ в автозапуск

Откроется окно которое нужно заполнить примерно так:

Имя — любое, как правило, для удобства, пишут имя программы.

Описание — можно не добавлять

google-drive-ocamlfuse /home/имя пользователя/google-disk

имя пользователя — указываете своё

Заполнив нажимаем ОК

окно заполненное для выполнения авто запуска Google drive

Ну и для верности теперь перезагружаем систему.

Если есть, что добавить или поделится своим опытом пишите в комментариях.

Источник

Google Drive папка для Linux

Существуют различные дистрибутивы Linux. В Xubuntu используется среда рабочего стола Xfce с файловым менеджером thunar (фунар). Целью данного туториала является описание способа подключения Google Диска к фунару. Этот же способ с небольшими доработкими может быть использован и для подключения Google Диск папки у серверного дистрибутива вроде Ubuntu server.

Читайте также:  File locking linux programming

А вот для очень популярной Ubuntu используется среда рабочего стола Gnome с файловым менеджером GNOME Files, куда еще в 2015 году интегрировали возможность использовать свой Google Диск непосредственно из приложения GNOME Files. Так что кто хочет всё и сразу, ставьте Ubuntu (лично у меня комп не тянет) и не читайте дальше.

Перейдем к созданию Google Drive папки

sudo add-apt-repository ppa:alessandro-strada/ppa sudo apt update sudo apt install google-drive-ocamlfuse

2) Создаем директорию, куда будем монтировать. Пусть директория называется gd и лежит в каталоге пользователя (символ тильда ~ означает домашний каталог текущего пользователя).

Назначим права доступа на директорию

3) Теперь необходимо из-под пользователя (не sudo) выполнить команду

Вы будете перенаправлены в браузер для авторизации (вариант без браузера тут). По ее завершении Google у вас спросит разрешить управлять вашим диском – подтверждаем.

Кажется готово: можно перейти в директорию ~/gd и увидеть там свои файлы из облака.

После перезапуска системы ваша папка на компьютере окажется пуста, потому что не настроено автоматическое монтирование.

4) Настроим автоматическое монтирование с помозью systemd. Необходимо создать файл с именем, пусть google-drive.service по адресу /etc/systemd/system/ Сделать это можно разными способами, я предпочитаю через редактор nano. То есть мы открываем в nano файл на редактирование и через ctrl+c ctrl+v наполняем его. Хотя делать то же можно и через cat, тогда содержимое файла возможно передать не через буфер обмена, а прямо указать в терминале, очень удобно для скриптов. Далее я покажу и этото способ, а пока (создадим и) откроем файл через nano.

sudo nano /etc/systemd/system/google-drive.service

[Unit] Description=FUSE filesystem over Google Drive After=network.target [Service] User=a Group=a ExecStart=google-drive-ocamlfuse -label default ~/gd ExecStop=fusermount -u ~/gd Restart=always Type=forking [Install] WantedBy=multi-user.target
cat /etc/systemd/system/google-drive.service [Unit] Description=FUSE filesystem over Google Drive After=network.target [Service] User=a Group=a ExecStart=google-drive-ocamlfuse -label default ~/gd ExecStop=fusermount -u ~/gd Restart=always Type=forking [Install] WantedBy=multi-user.target EOF

5) Финальный аккорд — вызываем

sudo systemctl daemon-reload sudo systemctl start google-drive

Теперь на компьютере будет папка Google Диска и при включении она будет автомонтироваться. Кстати ocamlfuse поддерживает возможность использования нескольких аккаунтов.

Дополнительные материалы

Аналогичный туториал другими словами тут.

Еще один способ подключения Google Drive в Xubuntu.

Туториал как подключить Google Диск через fstab

Источник

How to Install Google Drive on Ubuntu 20.04

Google Drive is an amazing cloud service by Google that allows uploading, sharing, and syncing files across devices. Google Drive encompasses other sub-services, for example, Google Docs, Google Sheets, and Google Slides, etc. that are part of an office suite. The cloud storage is available for free (up to 15GB), but there are also options available for paid service (up to 30TB).

In this article, let’s check out how to install Google Drive on Ubuntu 20.04.

Google Drive on Ubuntu

Because of its immense popularity, Google officially offers desktop clients for Windows and macOS. It’s 2020, and we’re yet to get an official Google Drive client for Linux.

Читайте также:  Графические оболочки арч линукс

Thankfully, there are other ways to enjoy Google Drive on Linux, especially on Ubuntu. All of these are 3 rd -party apps. I’m going to showcase some of the best clients you can use to enjoy Google Drive on Ubuntu. These methods are very likely to work on other Ubuntu-based distros as well.

GNOME Online Accounts

Ubuntu now uses GNOME as the default desktop environment. The GNOME Online Accounts is a sign-on framework for GNOME. It supports popular online services like Google, Facebook, Microsoft, and Nextcloud, etc. This method should be followed if you’re using the GNOME desktop.

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.

To add your Google Drive account, search for “Settings” in the GNOME menu.

From the left panel, select “Online Accounts”. Select “Google” from the available options.

A tiny browser window will pop up, prompting you to log in to your Google account.

Once the login is successful, GNOME will prompt for the contents to sync with your Google Drive.

Voila! Google Drive is ready to go! Fire up the file manager. You can directly access the Google Drive folder. Any change made in the folder will be synced with the online storage.

google-drive-ocamlfuse

According to the official description, google-drive-ocamlfuse a FUSE filesystem for Google Drive that’s written in OCaml. Using this tool, you can mount your Google Drive on the system and access it just like a regular directory. Any change made will be automatically synced.

Features of google-drive-ocamlfuse include –

  • Multiple account support
  • Symbolic links
  • Read-only access to Docs, Sheets, and Slides
  • UNIX file permission and ownership

For Ubuntu, there are dedicated PPAs, one for the stable version, one for the beta version. Here, I’ll be showcasing how to install the stable version of google-drive-ocamlfuse. Fire up the terminal and run the following commands.

To set your Google drive folder, launch the tool.

It’ll pop up a webpage in your default browser, prompting you to log in to your Google account.

Go through the login process. If it’s successful, you’ll see a success message. You can now close the browser.

Now, we need to create a mount point for Google Drive. Let’s create a sub-directory under the home directory.

Tell google-drive-ocamlfuse to mount your Google Drive folder at the location.

Check if the mount was successful.

Let’s test out how the synchronization is working.

Note that google-drive-ocamlfuse will sync the directory with the server every 60 seconds. If you’ve made a change in the mounted directory, it’ll be updated after 60 seconds. Similarly, if any change is made to the Google Drive contents from somewhere else, google-drive-ocamlfuse will update it locally after a minute.

Читайте также:  Управление реле через usb linux

Insync

Insync is a powerful desktop client designed to work with Google Drive and Microsoft OneDrive. It’s a GUI tool available for Windows, macOS, and Linux. It has multi-account support (both Google Drive and OneDrive), selective syncing, and above all, a pleasant and simple UI.

However, unlike other solutions mentioned in the article, it comes with a price tag. You can enjoy Insync for up to 2 weeks for free. If you want to use it more, you have to unlock it by performing a one-time purchase. The pricing is determined by the number of accounts you want to use with Insync.

Here, I’ll be showcasing how to install and use Insync (trial version). If you’ve purchased the product, then all you need is manually enter the license key in the software.

It’s time to install the DEB package. Fire up the terminal and run the following commands.

First, the tool will ask for which cloud service you’re interested in. In this case, we’ll be going with Google Drive.

Click on the Google Drive icon. It’ll open a webpage on the default browser. You’ll be asked to log in to your Google account.

Once the login is complete, a success message will pop up. You can now close the browser.

Insync will be ready to go. Click “Next”.

Select the physical location of the folder where Insync will sync all the Google Drive files.

Insync will ask for configuring your sync preference. For general use, you can ignore the message. If you’re an advanced user, however, then you should look into it. I’ll be just skipping ahead.

Select all the contents that you wish to sync at the moment.

Voila! Insync is ready to go!

Final thoughts

Google Drive is an awesome service suitable for both personal and professional use. Feel free to use the right tool for you. If you need to access services like Google Docs, Sheets, and Slides, it’s better to use your browser.

Don’t forget to check out ODrive – a powerful syncing service that allows managing all the popular cloud storages (Amazon, Dropbox, Google Drive, OneDrive, Slack, FTP, SFTP, DigitalOcean, and others) from a single place. One of the interesting key features of ODrive is its encryption support. The files are locally encrypted and uploaded, leaving no chance of loss even in the case of data theft. Check out how to install ODrive on Ubuntu.

About the author

Sidratul Muntaha

Student of CSE. I love Linux and playing with tech and gadgets. I use both Ubuntu and Linux Mint.

Источник

Оцените статью
Adblock
detector