2020년 12월 1일 화요일

Ubuntu 18.04에 Microsoft OneDrive 원드라이브 설치 동기화 방법

 1. 필요한 앱 설치

sudo apt install build-essential

sudo apt install libcurl4-openssl-dev libsqlite3-dev

sudo apt install pkg-config git

sudo apt install git


2. 필요한 파일 다운로드

sudo wget https://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list

sudo apt-get update --allow-insecure-repositories

sudo apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring

sudo apt-get update && sudo apt-get install dmd-compiler dub

sudo snap install --classic dmd && sudo snap install --classic dub


3. Repository 파일 복사 및 onedrive 폴더에 설치

git clone https://github.com/abraunegg/onedrive.git


4. compile 및 install

cd onedrive

./configure

make

sudo make install


5. 실행 및 계정 접속 승인 

onedrive 

-실행시 터미널에 나타나 링크 주소를 로컬에 있는 내 pc의 크롬 주소창에 붙여넣기 엔터 

- 원드라이브 로그인(ID/PASS) 후 거기서 나온 주소 URL을 다시 카피하여 

- 터미널 url:  뒤에 붙어넣기 엔터


6. 로컬 동기화 폴더 생성, 설정파일 복사 및 이동 설정

mkdir -p ~/OneDrive

cp config ~/.config/onedrive/config


7. 설정파일 확인, 필요시 편집

cd

onedrive --display-config


8. 설정 편집시에는 아래 설정파일을 보고 조정

예) 로컬 폴더에서 onedrive에 upload만 할 때

cd onedrive

sudo nano ~/.config/onedrive/config

아래처럼 upload_only를 활성화 하면서 false를 true로 수정

===

upload_only = "true"

===


9. 동기화 및 모니터

onedrive --synchronize

onedrive --monitor

설정변경 후 재 동기화

onedrive --synchronize --resync


참조 : https://github.com/abraunegg/onedrive

댓글 2개:

  1. Ubuntu 20.04 다운로드 및 설치
    wget http://downloads.dlang.org/releases/2.x/2.093.1/dmd_2.093.1-0_amd64.deb
    sudo dpkg -i dmd_2.093.1-0_amd64.deb

    답글삭제
  2. 합축 요약 정리해 주셔서 감사합니다. 잘 사용했습니다.

    답글삭제