Zeile 1: |
Zeile 1: |
| Google Drive ist ein [[Cloud]]-Dienst von Google, der das Speichern und Teilen von Dateien in der Cloud ermöglicht. | | Google Drive ist ein [[Cloud]]-Dienst von Google, der das Speichern und Teilen von Dateien in der Cloud ermöglicht. |
| | | |
− | | + | == Clients == |
| Für [[Linux]] gibt es folgende Clients | | Für [[Linux]] gibt es folgende Clients |
| + | * Grive2 ist eine Weiterentwicklung von Grive für die Kommandozeile. Es kann bisher jedoch nicht bestätigt werden, ob alles synchronisiert wird; der Upload zu Google Drive funktioniert jedenfalls (Stand: Juni 2016). Es wird üblicherweise über das Repository der jeweiligen Distribution installiert und heißt dort meist schlicht <code>grive</code>. |
| * [https://github.com/Grive/grive Grive], ein inoffizielles Programm für die Konsole, | | * [https://github.com/Grive/grive Grive], ein inoffizielles Programm für die Konsole, |
| ** mit Grive Tools als GUI-Frontend, das auch automatisch Updates auslöst | | ** mit Grive Tools als GUI-Frontend, das auch automatisch Updates auslöst |
Zeile 8: |
Zeile 9: |
| ** Grive wird wohl seit zwei Jahren nicht weiterentwickelt<ref>Siehe https://github.com/Grive/grive</ref> | | ** Grive wird wohl seit zwei Jahren nicht weiterentwickelt<ref>Siehe https://github.com/Grive/grive</ref> |
| * [http://www.howtogeek.com/196635/an-official-google-drive-for-linux-is-here-sort-of-maybe-this-is-all-well-ever-get/ drive], ein inoffizielles einfaches Konsolenprogramm zum Hoch- und Herunterladen einzelner Dateien | | * [http://www.howtogeek.com/196635/an-official-google-drive-for-linux-is-here-sort-of-maybe-this-is-all-well-ever-get/ drive], ein inoffizielles einfaches Konsolenprogramm zum Hoch- und Herunterladen einzelner Dateien |
| + | ** [https://github.com/odeke-em/drive neue Projektpage von drive] |
| + | * [https://github.com/astrada/google-drive-ocamlfuse google-drive-ocamlfuse] - ein Dateisystem, um Google Drive zu mounten |
| + | ** [https://github.com/astrada/google-drive-ocamlfuse/wiki Wiki für Google-Drive-OcamlFuse] |
| + | ** [https://github.com/astrada/google-drive-ocamlfuse/wiki/rsync Für rsync nach Google Drive sollte der ] <code>--inplace</code>-Parameter gesetzt werden. Auch <code>-W</code> sollte gesetzt werden, um die Übertragungen zu beschleunigen. |
| + | ** [https://github.com/astrada/google-drive-ocamlfuse/wiki/Automounting Anleitung zum automatischen Mounten von Google Drive] |
| + | * [https://github.com/siom79/jdrivesync jDriveSync] - ein Java-Tool zum Synchronisieren mit Google Drive |
| * InSync, ein kommerzieller kostenpflichtiger Client | | * InSync, ein kommerzieller kostenpflichtiger Client |
| + | * [https://www.thefanclub.co.za/overgrive overGrive] - ein kommerzieller Desktop-Client für ca. 5 € |
| + | |
| + | === drive === |
| + | |
| + | Für drive muss die Sprache Go und (zum Herunterladen von drive) [[git]] und [[Mercurial]] installiert sein: |
| + | sudo aptitude install golang git-core mercurial |
| + | |
| + | Außerdem muss ein Arbeitsverzeichnis von Go gesetzt werden |
| + | mkdir ~/gopath |
| + | export GOPATH=~/gopath |
| + | |
| + | Dann mit dem Go-Befehl |
| + | go get github.com/odeke-em/drive/cmd/drive |
| + | von der [https://github.com/odeke-em/drive neuen Projektseite von drive] herunterladen. |
| + | |
| + | |
| + | Starten lässt sich das Programm aus dem heruntergeladenen Verzeichnis: |
| + | $GOPATH/bin/drive |
| + | |
| + | == Alternativen == |
| + | Alternativen zu Google Drive sind |
| + | * andere Online-Dienstanbieter, z.B. |
| + | ** [[Dropbox]] |
| + | ** [[OneDrive]] von Microsoft |
| + | * andere Cloud-Software wie |
| + | ** [[OwnCloud]], sehr feature-reich |
| + | ** [[Seafile]], sehr stabil |
| + | ** [[SyncThing]] |
| | | |
| --------- | | --------- |