본문으로 바로가기

ubuntu 에서 gdrive 사용하기

category AIFFEL 대전/Fundamentals 2021. 1. 3. 05:27

윈도우10을 사용하며 google drive를 내 개인 클라우드 저장소로 사용하다가

ubuntu 로 갈아타니 웹으로만 접근하기 불편하여 ubuntu gdrive 를 찾아보니 mount 하는 방법이 나온다.

이탈리아 밀라노의 개인으로 보이는데 대단한 개발자인듯.

 

github.com/astrada/google-drive-ocamlfuse

 

astrada/google-drive-ocamlfuse

FUSE filesystem over Google Drive. Contribute to astrada/google-drive-ocamlfuse development by creating an account on GitHub.

github.com

방법은 간단하다. 터미널에서

1.sudo add-apt-repository ppa:alessandro-strada/ppa
2.sudo apt update

3.sudo apt install google-drive-ocamlfuse


그리고 사용할 디렉토리를 만들고 mount 하면 끝

1.mkdir ~/gdrive

2.cd ~/gdrive

3.google-drive-ocamlfuse ~/gdrive

 

#######

문제 : 컴퓨터를 껏다가 켜니까 gdrive를 못 찾는다.

demount :  fusermount -u ~/gdrive

remount :  google-drive-ocamlfuse ~/gdrive

 

##########################################

컴터 부팅 시 자동으로 gdrive 연결되도록 설정

1.cd /etc/init.d

2.sudo nano autostart.sh

3.autostart.sh 안에 /usr/bin/google-drive-ocamlfuse ~/gdrive 입력 후 저장

4.reboot

 

3.에서 find google-drive-ocamlfuse 를 검색하면 경로를 알 수 있다.

 

안된다..

##########################################

5.앱 > 시작프로그램 > 추가 > sh autostart.sh 추가

 

이제 작동된다!

##########################################