Difference between revisions of "Insync"
(→Running as a systemd service) |
(→Running as a systemd service: style) |
||
(18 intermediate revisions by 11 users not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Internet | + | [[Category:Internet applications]] |
− | {{ | + | [[ja:Insync]] |
− | + | {{Related articles start}} | |
− | {{ | + | {{Related|Dropbox}} |
− | + | {{Related articles end}} | |
− | {{ | ||
− | |||
[https://insynchq.com insync] is an alternative Google Drive client which is available for Windows, Mac OS X and Linux which allows you to sync a local folder or symlinked folders with your Google Drive. Whilst previous Beta versions used to be for free, the final release features a trial period after which a one-time payment per Google account is required. | [https://insynchq.com insync] is an alternative Google Drive client which is available for Windows, Mac OS X and Linux which allows you to sync a local folder or symlinked folders with your Google Drive. Whilst previous Beta versions used to be for free, the final release features a trial period after which a one-time payment per Google account is required. | ||
Line 15: | Line 13: | ||
== Configuration == | == Configuration == | ||
− | + | {{Note|Starting Insync with the {{ic|--set-files-path}} flag is no longer necessary. The aforementioned flag has been removed from recent Insync releases.}} | |
− | {{ | ||
− | + | Insync can be started with the {{ic|insync start}} command and stopped with the {{ic|insync quit}} command. A shortcut for starting Insync should be available in the applications menu of your desktop environment. | |
=== Running as a systemd service === | === Running as a systemd service === | ||
− | |||
− | + | [[Enable]] {{ic|insync@<user>.service}}. | |
=== Cinnamon === | === Cinnamon === | ||
Line 30: | Line 26: | ||
== Usage == | == Usage == | ||
− | The usage is self-explanatory. Copy files and folders from and to your local folder to sync it with your Google Drive. | + | The usage is self-explanatory. Copy files and folders from and to your local folder to sync it with your Google Drive. |
+ | |||
+ | === Control via CLI === | ||
+ | |||
+ | See [https://support.insynchq.com/t/how-to-control-insync-via-command-line-cli/34 How to control Insync via command line (CLI)]. | ||
+ | |||
+ | == Troubleshooting == | ||
+ | |||
+ | === Slow sync process === | ||
+ | |||
+ | The default systemd service file provided in {{AUR|insync}} uses the {{ic|--synchronous-full}} flag to make sqlite transactions safer and prevent database corruption. However, for some users this might considerably slow down the sync process. If you do not need full synchronisation, create {{ic|/etc/systemd/system/insync@.service}} to override the provided service file and modify the {{ic|ExecStart}} variable: | ||
+ | |||
+ | {{hc|/etc/systemd/system/insync@.service|<nowiki> | ||
+ | .include /usr/lib/systemd/system/insync@.service | ||
+ | [Service] | ||
+ | ExecStart=/usr/bin/insync start | ||
+ | </nowiki>}} | ||
+ | |||
+ | === GUI not starting and failing silently === | ||
+ | |||
+ | When running {{ic|insync start}}, the status tray icon does not appear and insync does not start. | ||
+ | |||
+ | According to [https://forums.insynchq.com/t/insync-arch-linux-not-starting-segfault-at-730-error-14/8893], this is due to {{ic|QGtkStyle}}. You will need to set the Qt4 theme to something other than Gtk+ using {{ic|qtconfig-qt4}}. |
Latest revision as of 18:15, 16 August 2017
insync is an alternative Google Drive client which is available for Windows, Mac OS X and Linux which allows you to sync a local folder or symlinked folders with your Google Drive. Whilst previous Beta versions used to be for free, the final release features a trial period after which a one-time payment per Google account is required.
Contents
Installation
Install insyncAUR, available in the AUR. It contains the synchronization daemon, a systemd service file and a command line utility for configuration. It can be used and integrates nicely with different desktop environments such as KDE, Gnome or Cinnamon.
Configuration
--set-files-path
flag is no longer necessary. The aforementioned flag has been removed from recent Insync releases.Insync can be started with the insync start
command and stopped with the insync quit
command. A shortcut for starting Insync should be available in the applications menu of your desktop environment.
Running as a systemd service
Enable insync@<user>.service
.
Cinnamon
When you start insync from the start menu it may not appear in the task bar. For that you need to add the task bar applet by right-click on your panel.
Usage
The usage is self-explanatory. Copy files and folders from and to your local folder to sync it with your Google Drive.
Control via CLI
See How to control Insync via command line (CLI).
Troubleshooting
Slow sync process
The default systemd service file provided in insyncAUR uses the --synchronous-full
flag to make sqlite transactions safer and prevent database corruption. However, for some users this might considerably slow down the sync process. If you do not need full synchronisation, create /etc/systemd/system/insync@.service
to override the provided service file and modify the ExecStart
variable:
/etc/systemd/system/insync@.service
.include /usr/lib/systemd/system/insync@.service [Service] ExecStart=/usr/bin/insync start
GUI not starting and failing silently
When running insync start
, the status tray icon does not appear and insync does not start.
According to [1], this is due to QGtkStyle
. You will need to set the Qt4 theme to something other than Gtk+ using qtconfig-qt4
.