说明:之前发了个Google Drive
网盘挂载教程,参考:在Debian/Ubuntu上使用rclone挂载Google Drive网盘,然后博主想用同样的方法试试挂载OneDrive
网盘,可是卡在了授权那里,然后只有请求Vicer
大佬帮忙解决了,这里分享下挂载教程。
提示:本教程挂载OneDrive for Business
和个人版的方法都一样,这里以个人版为参考。
说明
本教程只适用Debian
/Ubuntu
系统,如果你是CentOS
或者其它Linux
系统,请使用以下命令安装rclone
:
curl https://rclone.org/install.sh | sudo bash
客户端授权、初始化配置和挂载方法和下面一样,开机自启可参考该教程→传送门。
客户端授权
在本地Windows
电脑上下载rclone
,下载地址:https://rclone.org/downloads/。然后解压出来,比如我解压到D
盘,文件夹命名rclone
,此时点击Win+R
,然后输入cmd
,确定。再输入以下命令:
cd /d d:\rclone
rclone authorize "onedrive"
会出现以下信息:
C:\Users\Administrator>cd /d d:\rclone
d:\rclone>rclone authorize "onedrive"
2018/01/23 20:28:56 NOTICE: Config file "C:\\Users\\Administrator\\.config\\rclo
ne\\rclone.conf" not found - using defaults
Choose OneDrive account type?
* Say b for a OneDrive business account
* Say p for a personal OneDrive account
b) Business
p) Personal
b/p> p #这里选择个人版,你想挂载Business就选择b
If your browser doesn't open automatically go to the following link: http://127.
0.0.1:53682/auth #接下来会弹出浏览器,要求你登录账号进行授权
Log in and authorize rclone for access
Waiting for code...
Got code
Paste the following into your remote machine --->
{"access_token":"xxxx"} #请复制{xx}整个内容,后面需要用到
<---End paste
安装rclone
本教程只适用Debian
/Ubuntu
系统,如果你是CentOS
,请参考:https://rclone.org/install/,安装rclone
。挂载方法和下面差不多。
1、安装rclone
wget https://www.moerats.com/usr/shell/rclone_debian.sh && bash rclone_debian.sh
2、初始化配置
rclone config
会出现以下信息:
n) New remote
s) Set configuration password
q) Quit config
n/s/q> n
name> Rats #随便填,后面要用到
Type of storage to configure.
Choose a number from below, or type in your own value
1 / Amazon Drive
\ "amazon cloud drive"
2 / Amazon S3 (also Dreamhost, Ceph, Minio)
\ "s3"
3 / Backblaze B2
\ "b2"
4 / Box
\ "box"
5 / Cache a remote
\ "cache"
6 / Dropbox
\ "dropbox"
7 / Encrypt/Decrypt a remote
\ "crypt"
8 / FTP Connection
\ "ftp"
9 / Google Cloud Storage (this is not Google Drive)
\ "google cloud storage"
10 / Google Drive
\ "drive"
11 / Hubic
\ "hubic"
12 / Local Disk
\ "local"
13 / Microsoft Azure Blob Storage
\ "azureblob"
14 / Microsoft OneDrive
\ "onedrive"
15 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
\ "swift"
16 / Pcloud
\ "pcloud"
17 / QingCloud Object Storage
\ "qingstor"
18 / SSH/SFTP Connection
\ "sftp"
19 / Webdav
\ "webdav"
20 / Yandex Disk
\ "yandex"
21 / http Connection
\ "http"
Storage> 14 #选择14,Microsoft OneDrive,,注意该序列号会随时变化,看清楚再填
Microsoft App Client Id - leave blank normally.
client_id> #留空
Microsoft App Client Secret - leave blank normally.
client_secret> #留空
Remote config
Choose OneDrive account type?
* Say b for a OneDrive business account
* Say p for a personal OneDrive account
b) Business
p) Personal
b/p> p #这里选择个人版,你想挂载Business就选择b
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n> n #选择n
For this to work, you will need rclone available on a machine that has a web browser available.
Execute the following on your machine:
rclone authorize "onedrive"
Then paste the result below:
result> {"access_token":""} #输入之前在客户端授权的内容
--------------------
[Rats]
client_id =
client_secret =
token = {"access_token":""}
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d> y 选择y
Current remotes:
Name Type
==== ====
Rats onedrive
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 #选择q退出
挂载
1、挂载为磁盘
#新建本地文件夹,路径自己定,即下面的LocalFolder
mkdir /root/OneDrive
#挂载为磁盘,下面的DriveName、Folder、LocalFolder参数根据说明自行替换
rclone mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
DriveName
为初始化配置填的name
,Folder
为OneDrive
里的文件夹,LocalFolder
为VPS
上的本地文件夹。
如果挂载过程中出现NOTICE: One drive root 'test': poll-interval is not supported by this remote
错误,可以无视该错误。
挂载成功后,输入df -h
命令查看即可!
2、卸载磁盘
fusermount -qzu LocalFolder
开机自启
先新建systemd
配置文件,适用CentOS 7
、Debian 8+
、Ubuntu 16+
。
再使用命令:
#将后面修改成你上面手动运行命令中,除了rclone的全部参数
command="mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000"
#以下是一整条命令,一起复制到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
开始启动:
systemctl start rclone
设置开机自启:
systemctl enable rclone
其他命令:
重启:systemctl restart rclone
停止:systemctl stop rclone
状态:systemctl status rclone
如果你想挂载多个网盘,那么将systemd
配置文件的rclone.service
改成rclone1.service
即可,重启动什么的同样换成rclone1
。
老哥,没有浏览器跳出来让我授权啊
需要客户端配合,仔细看看操作。
博主我每次输入粘贴token就出现不知名错误!是不是这个方法不能用了
应该不会,看是不是哪里操作不对
版主你好,我依照次教程一直操作,到vps(debian8)的时候操作到result> {"access_token":""} #输入之前在客户端授权的内容,的时候。出现Failed to save new token in config file: section 'emancipator(相当于您的rat·s)' not found。请问应该如何解决
输入授权码的时候失败?授权码之间不要有空格。
移动文件显示mv: cannot stat ‘/root/OneDrive/test.txt’: Input/output error。ls显示ls: reading directory .: Input/output error。这个问题请问是什么原因/有什么解决方法吗
其实那个错误是第一次输入后再输入出现的。我挂在成功后显示od:cloud 1.0P 0 1.0P 0% /root/OneDrive
但是不能查看。不能mv文件进去。请问是不能管理的意思吗。谢谢
显示0%是正常的,不能mv应该是硬盘的问题,你重启下试试?
重启后进去再打开rclone后进入此目录。无论是ls还是创建一个文件夹123.或者是mv。都是一直卡住的状态。表现为无任何变化的那种
那可能是硬盘挂了。
是onedrive硬盘挂了吗?但是依然可用,是不是方法gg了已经不能挂载了,如果不是的话,请测试一下您的onedrive挂载是否可用,如果可用的话,……那真不知道哪里出问题了
这个方法一直会有效,一般ls: reading directory .: Input/output error的错误,就是VPS硬盘挂了,也可能是没挂好,你重新来遍看看。
我重新在新的机器上测试,也是输入token的时候提示Failed to query available services: HTTP error 401 (401 Unauthorized) returned body: "{"error":{"code":"-2147024891, System.UnauthorizedAccessException","message":"Access denied. You do not have permission to perform this action or access this resource."}}"。不过返回倒是一致。不知道什么原因。挂载的时候命令rclone mount od:cloud /root/OneDrive --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
返回:2018/04/08 09:56:56 Failed to create file system for "od:cloud": failed to get root: unauthenticated: Must be authenticated to use '/drive' syntax
。
第一个是授权失败,然后导致后面的没有权限操作。你多检查下吧。
root@sk:~# rclone mount sk:download one --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
2018/03/31 00:22:26 mount helper error: fusermount: fuse device not found, try 'modprobe fuse' first
2018/03/31 00:22:26 Fatal error: failed to mount FUSE fs: fusermount: exit status 1
尝试了N遍了,都是这样的结果,系统也换了好几遍了。
OVZ的吗?需要发工单开启FUSE模块。
自己都解决了,不用问了
咱也遇到这个问题了,搬瓦工的kvm机器,是不是也是这个原因?
2018/04/25 15:58:43 Fatal error: failed to mount FUSE fs: fusermount: exec: "fusermount": executable file not found in $PATH
kvm自带fuse模块,显示这个信息是没安装fuse。yum install fuse,或者apt-get install fuse。
终于搞定了,没想到对虚拟技术还有要求,谢博主
能挂载多个吗?
应该可以,使用不同的Name挂载。
试了rcloned添加不行
同时多个不行?
是的,编辑rcloned这个文件不行。
那就挂一个吧。
博主你好,我在mac下挂在总提示2018/02/22 16:40:02 Fatal error: failed to mount FUSE fs: cannot locate OSXFUSE,请问是什么原因你知道吗?
看错误提示,是缺少fuse。你安装fuse试试?
安装了osxfuse,现在又报错 Fatal error: failed to mount FUSE fs: mount_osxfusefs: exit status 71
安装后重启一下。
挂载rclone后一直在下载,请问是怎么回事?
什么操作也没,挂上去就下载?
好像不能挂载教育版onedrive,在认证页面是failed
配置文件选的Business吗?
我也是这个问题 配置文件选的Business
多试几次,access_token要填对,还不能有空格。
在WINDOWS 的CMD上使用 rclone authorize "onedrive" 后选择Business想获取教育版token 自动弹出的页面永远显示Failed!
No code found returned by remote server. 但是个人版就没事 可以正常获取。
教育版可以试试这个方法:https://www.moerats.com/archives/592/。
楼主你好,我使用您的教程,在debian8下挂在onedriver成功。然后把transmission的下载目录设定成挂在目录,结果在pt下载时候,提示错误:Illegal seek (/data/www/download/one/群星 - 十年经典成名好歌 黑胶2CD - 2015 - WAV分轨/群星-十年经典成名好歌CD2[WAV] ),请问是什么原因呢?谢谢
/data/www/download/one 是我vps的挂载目录
好像有限制,不能直接作为下载盘,之前Google Drive也是这样的情况,你可以试试Aria2,参考这个::https://www.moerats.com/archives/482/,可以将文件自动上传至你挂载的网盘。或者你将文件下载到其它文件夹,然后再使用mv命令将文件移进网盘。
dalao你好,我挂载OneDrive之后用mv命令也没法移进网盘,请问这是怎么回事呢
root@AppropriateVicious-VM:~# mv AIM-System-V3.2-20180419-OFFICIAL-kenzo.zip /root/OneDrive
mv: error writing '/root/OneDrive/AIM-System-V3.2-20180419-OFFICIAL-kenzo.zip': Input/output error
mv: failed to extend '/root/OneDrive/AIM-System-V3.2-20180419-OFFICIAL-kenzo.zip': Input/output error
mv: failed to close '/root/OneDrive/AIM-System-V3.2-20180419-OFFICIAL-kenzo.zip': Input/output error
文件是不是大于4G?
明白了,不过aria2不能pt下载。所以只能用transmission。
安装上以后 显示需要身份验证 pc端使用一切正常
Failed to create file system for "1:/": failed to get root: unauthenticated: Must be authenticated to use '/drive' syntax
请问这是什么问题。
验证通过了?
那只能辛苦点,自己mv了。