Linux에서 OneDrive
하고 싶은 일
Linux에서 OneDrive를 사용하고 싶습니다.
지금은 MS의 공식이 없는 것 같아서 OneDrive Free Client를 사용해 보세요.
이번에는 Ubuntu16.04를 대상으로 합니다.
다음은 요점만 기술하는 절차입니다.각 플랫폼에 대한 자세한 단계 설명은 여기 또는 여기 입니다.
단계
1. OneDrive Free Client 구축에 필요한 설치
sudo su
apt install build-essential
apt install libcurl4-openssl-dev
apt install libsqlite3-dev
apt install pkg-config
curl -fsS https://dlang.org/install.sh | bash -s dmd
source ~/dlang/dmd-2.088.0/activate
※'dmd-2.088.0'버전 다시 읽기
2. OneDrive Free Client 구축
cd /opt
git clone https://github.com/abraunegg/onedrive.git
cd onedrive
./configure
make clean
make
make install
3. 계정 설정(꽃깃발)
onedrive
브라우저에서 터미널에 기록된 주소 액세스
OneDrive 계정에 로그인하고 액세스 라이센스 설정
액세스 권한 설정 복사 후 페이지 주소 재지정
터미널로 돌아가서 복사한 주소를 "Enter the response uri:"에 붙여넣습니다.
준비 완료
4. 설정
mkdir -p ~/.config/onedrive
echo 'sync_dir = "~/OneDrive"' > ~/.config/onedrive/config
cat ~/.config/onedrive/config
5.OneDrive 시작(씨티, 씨티)
예: 한 번만 & 다운로드 방향 동기화onedrive --synchronize --download-only
예: 항상 & 다운로드만 동기화onedrive --monitor --download-only
6. 서비스 등록
cd /opt/onedrive
systemctl --user enable onedrive
systemctl --user start onedrive
7. 로그 확인
journalctl --user-unit onedrive -f
7. 제거
cd /opt/onedrive
sudo make uninstall
rm -rf ~/.config/onedrive
Reference
이 문제에 관하여(Linux에서 OneDrive), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/qio9o9/items/8222863f84c0fe48cb28
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
1. OneDrive Free Client 구축에 필요한 설치
sudo su
apt install build-essential
apt install libcurl4-openssl-dev
apt install libsqlite3-dev
apt install pkg-config
curl -fsS https://dlang.org/install.sh | bash -s dmd
source ~/dlang/dmd-2.088.0/activate
※'dmd-2.088.0'버전 다시 읽기2. OneDrive Free Client 구축
cd /opt
git clone https://github.com/abraunegg/onedrive.git
cd onedrive
./configure
make clean
make
make install
3. 계정 설정(꽃깃발)
onedrive
브라우저에서 터미널에 기록된 주소 액세스
OneDrive 계정에 로그인하고 액세스 라이센스 설정
액세스 권한 설정 복사 후 페이지 주소 재지정
터미널로 돌아가서 복사한 주소를 "Enter the response uri:"에 붙여넣습니다.
준비 완료
4. 설정
mkdir -p ~/.config/onedrive
echo 'sync_dir = "~/OneDrive"' > ~/.config/onedrive/config
cat ~/.config/onedrive/config
5.OneDrive 시작(씨티, 씨티)
예: 한 번만 & 다운로드 방향 동기화
onedrive --synchronize --download-only
예: 항상 & 다운로드만 동기화
onedrive --monitor --download-only
6. 서비스 등록
cd /opt/onedrive
systemctl --user enable onedrive
systemctl --user start onedrive
7. 로그 확인
journalctl --user-unit onedrive -f
7. 제거
cd /opt/onedrive
sudo make uninstall
rm -rf ~/.config/onedrive
Reference
이 문제에 관하여(Linux에서 OneDrive), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/qio9o9/items/8222863f84c0fe48cb28텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)