Allen_Jeo

Allen_Jeo

Ubuntuでrcloneを使用してOneDriveクラウドストレージをマウントする

VPS のスペースが小さすぎる場合、rclone を使って OD ドライブをローカルにマウントするのはどうでしょうか?#


一、トークンの取得(ローカルで実施)#

1)Win10 の方法#

  1. こちらをクリックしてトークン取得ツールをダウンロード
  2. 解凍し、rclone.exeがあるディレクトリに移動
  3. Shift + 右クリックしてここで PowerShell を開く
    ![Snipaste_2021-08-20_21-04-44.png][1]
    [1]: https://z-r.cc/usr/uploads/2021/08/3425953120.png
  4. 入力
./rclone.exe authorize "onedrive"

その後、指示に従って操作
5. 戻ってきた内容をコピー
{"access_token": から
"expiry":"your time"} までをコピーし、メモ帳に保存しておく
2)Win7 の方法

  1. こちらをクリックしてトークン取得ツールをダウンロード
  2. 解凍し、rclone.exeがあるディレクトリに移動
  3. rclone.exe をC:\Windows\System32にコピー
  4. 入力
rclone authorize "onedrive"
```shell
その後、指示に従って操作
5. 戻ってきた内容をコピー
{"access_token":から
"expiry":"your time"}までをコピーし、メモ帳に保存しておく

***
## 二、インストール(VPS上で実施)
1. rcloneをインストール
```shell
wget https://z-r.cc/rclone_ubuntu.sh && bash rclone_ubuntu.sh
  1. 設定の初期化
rclone config

その後、以下の情報が表示される

n) New remote
s) Set configuration password
q) Quit config
n/s/q> 

入力:n
その後、表示される

name>

ここは適当な名前を入力、ここではyournameとします
その後

Type of storage to configure.
Enter a string value. Press Enter for the default ("").
Choose a number from below, or type in your own value
1 / 1Fichier
\ "fichier"
2 / Alias for an existing remote
\ "alias"
3 / Amazon Drive
\ "amazon cloud drive"
4 / Amazon S3 Compliant Storage Providers including AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, and Tencent COS
\ "s3"
5 / Backblaze B2
\ "b2"
6 / Box
\ "box"
7 / Cache a remote
\ "cache"
8 / Citrix Sharefile
\ "sharefile"
9 / Compress a remote
\ "compress"
10 / Dropbox
\ "dropbox"
11 / Encrypt/Decrypt a remote
\ "crypt"
12 / Enterprise File Fabric
\ "filefabric"
13 / FTP Connection
\ "ftp"
14 / Google Cloud Storage (this is not Google Drive)
\ "google cloud storage"
15 / Google Drive
\ "drive"
16 / Google Photos
\ "google photos"
17 / Hadoop distributed file system
\ "hdfs"
18 / Hubic
\ "hubic"
19 / In memory object storage system.
\ "memory"
20 / Jottacloud
\ "jottacloud"
21 / Koofr
\ "koofr"
22 / Local Disk
\ "local"
23 / Mail.ru Cloud
\ "mailru"
24 / Mega
\ "mega"
25 / Microsoft Azure Blob Storage
\ "azureblob"
26 / Microsoft OneDrive
\ "onedrive"
27 / OpenDrive
\ "opendrive"
28 / OpenStack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ "swift"
29 / Pcloud
\ "pcloud"
30 / Put.io
\ "putio"
31 / QingCloud Object Storage
\ "qingstor"
32 / SSH/SFTP Connection
\ "sftp"
33 / Sugarsync
\ "sugarsync"
34 / Tardigrade Decentralized Cloud Storage
\ "tardigrade"
35 / Transparently chunk/split large files
\ "chunker"
36 / Union merges the contents of several upstream fs
\ "union"
37 / Webdav
\ "webdav"
38 / Yandex Disk
\ "yandex"
39 / Zoho
\ "zoho"
40 / http Connection
\ "http"
41 / premiumize.me
\ "premiumizeme"
42 / seafile
\ "seafile"
Storage>

ここで Microsoft OneDrive を見つける
入力:26(実際に応じて)

** See help for onedrive backend at: https://rclone.org/onedrive/ **

OAuth Client Id
Leave blank normally.
Enter a string value. Press Enter for the default ("").
client_id> 

そのまま Enter

OAuth Client Secret
Leave blank normally.
Enter a string value. Press Enter for the default ("").
client_secret> 

そのまま Enter

Choose national cloud region for OneDrive.
Enter a string value. Press Enter for the default ("global").
Choose a number from below, or type in your own value
1 / Microsoft Cloud Global
\ "global"
2 / Microsoft Cloud for US Government
\ "us"
3 / Microsoft Cloud Germany
\ "de"
4 / Azure and Office 365 operated by 21Vianet in China
\ "cn"
region>

ここは実際に応じて

Edit advanced config? (y/n)
y) Yes
n) No (default)
y/n>

入力:n

Remote config
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes (default)
n) No
y/n>

入力:n

For this to work, you will need rclone available on a machine that has
a web browser available.

For more help and alternate methods see: https://rclone.org/remote_setup/

Execute the following on the machine with the web browser (same rclone
version recommended):

rclone authorize "onedrive"

Then paste the result below:
result>

ここに以前取得したトークンを貼り付け

Choose a number from below, or type in an existing value
1 / OneDrive Personal or Business
\ "onedrive"
2 / Root Sharepoint site
\ "sharepoint"
3 / Sharepoint site name or URL (e.g. mysite or https://contoso.sharepoint.com/sites/mysite)
\ "url"
4 / Search for a Sharepoint site
\ "search"
5 / Type in driveID (advanced)
\ "driveid"
6 / Type in SiteID (advanced)
\ "siteid"
7 / Sharepoint server-relative path (advanced, e.g. /teams/hr)
\ "path"
Your choice>

自分の状況に応じて選択

Found 1 drives, please select the one you want to use:
0: OneDrive (business) id=****
Chose drive to use:> 0
Found drive 'root' of type 'business', URL: ****
Is that okay?
y) Yes (default)
n) No
y/n>

入力:y

[onedrive]
type = onedrive
region = global
token = {"access_token":"***:"2021-05-12T21:26:23.034940078-04:00"}
drive_id = b!HZQ8fVjEAkirFu8ARagwdQSJ8f6tKihCnEfvBcs_KuyXtvHlOzf1SJDUs8WRpgXq
drive_type = business
--------------------
y) Yes this is OK (default)
e) Edit this remote
d) Delete this remote
y/e/d>

入力:y

e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q>

q を押して終了


三、ディスクとしてマウント#

mkdir /root/OneDrive  #新しいローカルフォルダを作成、パスは自分で決める、以下のLocalFolder
rclone mount yourname:/ LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --vfs-cache-mode writes #yournameは初期設定で入力した名前、/はOneDriveのルートディレクトリ、他の値も可能、LocalFolderはVPS上のローカルフォルダ。

もし以下のエラーが表示された場合

NOTICE: One drive root 'test': poll-interval is not supported by this remote

無視してください
マウントが成功したら、直接接続を切ります。再接続後、df -h コマンドを入力して確認できます


四、ディスクのアンマウント(必要な場合)#

fusermount -qzu LocalFolder

五、起動時自動起動の設定#

  1. rclone.service ファイルを新規作成:
command="mount yourname:/ LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --vfs-cache-mode writes"
  1. 書き込み
#以下は一つのコマンドです、SSHクライアントにコピーして実行
cat > /etc/systemd/system/rclone.service <<EOF
[Unit]
Description=Rclone
After=network-online.target

[Service]
Type=simple
ExecStart=$(command -v rclone) ${command}
Restart=on-abort
User=root

[Install]
WantedBy=default.target
EOF

注意:ExecStart は前のステップで入力したコマンドです
3. デーモンをリロードして新しいサービスファイルを有効にします:

 systemctl daemon-reload
  1. 起動:
systemctl start rclone
systemctl enable rclone
  1. その他のコマンド:
再起動:systemctl restart rclone 
停止:systemctl stop rclone 
状態:systemctl status rclone

この記事のリンク:https://z-r.cc/2021/08/20/%E5%9C%A8Ubuntu%E4%B8%8A%E4%BD%BF%E7%94%A8rclone%E6%8C%82%E8%BD%BDOneDrive%E7%BD%91%E7%9B%98.html
転載の際は出典を明記してください!

読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。