包含标签 onedrive 的文章

用sharelist挂载onedrive

用sharelist挂载onedrive sharelist地址:https://github.com/reruin/sharelist 首先安装sharelist。使用docker比较方便。按照文档上面一条命令。https://reruin.github.io/sharelist/docs/#/zh-cn/ docker run -d -v /etc/sharelist:/sharelist/cache -p 33001:33001 --name="sharelist" reruin/sharelist 初始化的步骤也是按照文档。https://reruin.github.io/sharelist/docs/#/zh-cn/initialize 分别输入口令,标题和虚拟路径。 挂载onedrive 设置微软帐号 登录https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Overview 找到App registrations 新注册一个App。 填写名字和重定向的域名,比如https://list.yourdomainname.com 由于微软的新的安全策略,无HTTPS的网站无法直接被指定为回调地址,因此回调地址可使用中转地址:https://reruin.github.io/redirect/onedrive.html 记录Application (client) ID 和 Client credentials里面的value。一定要保存下来,之后就看不到secret id了。 具体情况如下图: app id: secret id: 设置sharelist 如果要挂载onedrive,选择OD API版,留空(只输入/),然后会跳转到挂载向导。 如果已经挂载过其他目录,可以回到列表页面刷新,能看到多个文件夹,选中要挂载的那个文件夹,就会到向导页面。 在向导中填入之前获得的app id和secret id即可。 ……

阅读全文

rclone挂载网盘到vps

https://rclone.org/onedrive/ 1. 在有图形界面的机器上面授权 下载rclone https://rclone.org/downloads/ //授权 rclone authorize "onedrive" 2. 在vps上面安装rclone curl https://rclone.org/install.sh | sudo bash 2.1 设置 rclone config //查看目录 rclone lsd drivename: 3. 挂载到vps的目录上 记得先安装fuse apt install fuse rclone mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --daemon rclone mount od:vps /root/onedrive --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --daemon df -h 查看挂载的网盘 config root@vultr:~/rclone# rclone config 2019/07/31 15:52:12 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/s/q> n name> od(自己随意起的名字) Type of storage to configure.……

阅读全文