使用 Rclone 挂载 OneDrive
安装 rclone
下载安装 rclone:
curl https://rclone.org/install.sh | bash
配置 rclone
安装完成后输入以下命令进行配置:
rclone config
输出:
2021/09/26 19:14:46 NOTICE: Config file "/root/.config/rclone/rclone.conf" not found - using defaults
No remotes found - make a new one
n) New remote
s) Set configuration password
q) Quit config
输入 n
新建配置。
name
可以随便输入,
然后会出现挂载的服务类型,如下:
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"
直接输入序号,比如我挂载的是 OneDrive 就可以输入 26
,
client_id
可以直接回车默认,
client_secret
也可以直接回车默认,
然后会出现 OneDrive 区域选择,如下:
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"
可以直接输入 1
选择全球,
然后是选择是否进行高级配置,如下:
dit advanced config? (y/n)
y) Yes
n) No (default)
可以输入 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
可以输入 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:
授权码需要在本地电脑上获取,访问 https://rclone.org/downloads/ 根据你的电脑系统版本下载对应的 Rclone。
下载完成后解压,进入存放 Rclone 的目录,以 Win10 为例,打开 Powershell ,我的 Rclone 放在 D:\Software\rclone-v1.56.1-windows-amd64
,我可以输入:
cd D:\Software\rclone-v1.56.1-windows-amd64
在存放 Rclone 的目录可以看到 rclone.exe
的可执行程序,输入:
./rclone authorize "onedrive"
浏览器应该会自动打开,如果浏览器没有打开可以根据提示复制地址访问。如果浏览器登录了 OneDrive 的话会直接显示授权确认信息,如果没有登录的话会弹出登录页面,登录 OneDrive 后也会显示授权确认信息,选择 接受
后在 powershell 命令行会显示一串 JSON 格式的授权信息;
复制下来整个JSON,粘贴至 Linux 终端。
然后是选择 OneDrive 的类型,如下:
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"
可以输入 1
,
然后会显示找到的 OneDrive 账户,如下:
Found 1 drives, please select the one you want to use:
0: OneDrive (business) id=b!b_xnJJqyBMSVPjgvhvbP8XmJ_M_dMjhzrbhnaWknnbKqNBm8MTqM3kvEtW67P
根据提示输入序号,
这里会根据你输入的序号查找账户,如下:
Found drive 'root' of type 'business', URL: https://xxx-my.sharepoint.com/personal/changbin_xxx_onmicrosoft_com/Documents
Is that okay?
y) Yes (default)
n) No
确认无误后输入 y
,
接着会显示你选择的配置信息,确认无误后输入 y
保存配置。
挂载
例如我要把一个名为 myOD
的配置挂载到本地的 /home/OneDrive
目录,我可以这样写:
rclone mount myOD:/vps /home/OneDrive --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
我这里挂载的是 OneDrive 网盘中的 “vps” 文件夹,所以我写的是 OneDrive 的目录 /vps
。
执行完后如果出现类似 NOTICE 的提示,忽略即可。
挂载完成后不会显示任何内容,可以再开一个终端,输入 df -h
查看磁盘空间情况。
VPS重启自动挂载
执行完上面的命令,如果关闭终端,挂载则会失效。
解决办法就是将上面的命令放到开机启动脚本中去。例如使用 rc.local
或注册一个 systemd 服务。
本教程暂略。
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭