관련메타

BIBLIOGRAPHY

Glotlabs/gdrive google drive cli client. (2024). [Computer software]. glotlabs. https://github.com/glotlabs/gdrive (2022)

Strada, A. (2024). Astrada/google-drive-ocamlfuse [Computer software]. https://github.com/astrada/google-drive-ocamlfuse (2012)

TODO Ubuntu Google Drive 동기화 솔루션 검토

[2025-10-01 Wed 10:26]

 
1. Rclone (무료, 강력함)
# 설치
sudo apt install rclone
 
# 설정
rclone config  # Google Drive 연동 설정
rclone mount gdrive: ~/gdrive  # 마운트
rclone bisync gdrive: ~/local-folder  # 양방향 동기화
 
2. Insync (유료, 쉬움)
- 일회성 결제 ($39.99)
- GUI 제공, 가장 완성도 높음
# 저장소 추가 후 설치
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ACCAF35C
sudo apt install insync
 
3. Celeste (무료 GUI)
- Rclone 백엔드 + GUI
sudo snap install celeste
# 또는
flatpak install flathub com.hunterwittenborn.Celeste
 
🎯 추천
 
회사용: Rclone + systemd 자동화
- 무료, 스크립트 연동 가능
- cron/systemd로 자동 동기화
 

TODO 구글 드라이브 Celeste (무료 GUI)

- Rclone 백엔드 + GUI
sudo snap install celeste
# 또는
flatpak install flathub com.hunterwittenborn.Celeste

Strada, Alessandro 2024 “astrada/google-drive-ocamlfuse”

(Strada, 2012/2024)

FUSE filesystem over Google Drive

astrada/google-drive-ocamlfuse/wiki/Automounting - github.com

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

2024 glotlabs/gdrive Google Drive CLI Client

(Glotlabs/Gdrive Google Drive Cli Client, 2022/2024)

복잡하긴 하지만, 아무튼 구글 클라우트 API 활용하는 것이다. 이렇게 해야 배운다. 훌륭하다.

근데 어처구니 없게도. 다운로드만 된다. 뭘 동기화 안된다.

glotlabs/gdrive/blob/main/docs/create_google_api_credentials.md - git-