秘密导航a计划

2023-03-19 21:18:54 0 120

说明:我们很多人喜欢用VPS做离线下载,不过由于有的男生奖励自己的视频素材免费硬盘太小了,装不了太多电影资源啥的,我们就需要想办法了,之前说过可以通过挂载FTP来增大空间,参考:Linux VPS通过安装CurlFtpFS来挂载FTP,这里再说个挂载Google Drive网盘的方法,毕竟Google Drive15G免费的空间,有的也有无限空间,都可以利用上去。

说明

本教程只适用Debian/Ubuntu系统,如果你是CentOS或者其它Linux系统,请使用以下命令安装rclone

												curl https://rclone.org/install.sh | sudo bash
											

初始化配置和挂载方法和下面一样,a计划导航可参考该教程→传送门。

安装

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. 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 Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)     "s3"  5 / Backblaze B2     "b2"  6 / Box     "box"  7 / Cache a remote     "cache"  8 / Dropbox     "dropbox"  9 / Encrypt/Decrypt a remote     "crypt" 10 / FTP Connection     "ftp" 11 / Google Cloud Storage (this is not Google Drive)     "google cloud storage" 12 / Google Drive     "drive" 13 / Google Photos     "google photos" 14 / Hubic     "hubic" 15 / JottaCloud     "jottacloud" 16 / Koofr     "koofr" 17 / Local Disk     "local" 18 / Mega     "mega" 19 / Microsoft Azure Blob Storage     "azureblob" 20 / Microsoft OneDrive     "onedrive" 21 / OpenDrive     "opendrive" 22 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)     "swift" 23 / Pcloud     "pcloud" 24 / Put.io     "putio" 25 / QingCloud Object Storage     "qingstor" 26 / SSH/SFTP Connection     "sftp" 27 / Union merges the contents of several remotes     "union" 28 / Webdav     "webdav" 29 / Yandex Disk     "yandex" 30 / http Connection     "http" 31 / premiumize.me     "premiumizeme" Storage> 12  #选择12,Google Drive,注意该序列号会随时变化,看清楚再填 Google Application Client Id - leave blank normally. client_id>  #留空  Google Application Client Secret - leave blank normally. client_secret>  #留空 Service Account Credentials JSON file path - needed only if you want use SA instead of interactive login. service_account_file>  #留空 Choose a number from below, or type in your own value  1 / Full access all files, excluding Application Data Folder.     "drive"  2 / Read-only access to file metadata and file contents.     "drive.readonly"    / Access to files created by rclone only.  3 | These are visible in the drive website.    | File authorization is revoked when the user deauthorizes the app.     "drive.file"    / Allows read and write access to the Application Data folder.  4 | This is not visible in the drive website.     "drive.appfolder"    / Allows read-only access to file metadata but  5 | does not allow any access to read or download file content.     "drive.metadata.readonly" scope> 1  ID of the root folder Leave blank normally. Fill in to access "Computers" folders. (see docs). Enter a string value. Press Enter for the default (""). root_folder_id>  Service Account Credentials JSON file path  Leave blank normally. Needed only if you want use SA instead of interactive login. Enter a string value. Press Enter for the default (""). service_account_file>  Edit advanced config? (y/n) y) Yes n) No y/n> 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 n) No y/n> n  #输入n If your browser doesn't open automatically go to the following link: https://accounts.google.com/o/  #打开该地址获取code Log in and authorize rclone for access Enter verification code>hjdd  #输入你获取到的code Configure this as a team drive? y) Yes n) No y/n> n  #输入n -------------------- [Rats] type = drive client_id = 85042871 client_secret = D72gPc scope = drive token = {"access_token":"y902Z"} -------------------- y) Yes this is OK e) Edit this remote d) Delete this remote y/e/d> y  #输入y Current remotes: Name                 Type ====                 ==== Rats                 drive 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保存退出
												
											

3、挂载为磁盘

												#新建本地文件夹,路径自己定,即下面的LocalFolder mkdir /root/GoogleDrive #挂载为磁盘,下面的DriveName、Folder、LocalFolder参数根据说明自行替换 rclone mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
											

DriveName为初始化配置填的nameFolderGoogle Drive里的文件夹,LocalFolderVPS上的本地文件夹。

挂载成功后,输入df -h命令查看即可!

请输入图片描述

4、卸载磁盘

												fusermount -qzu LocalFolder
												
											

a计划导航

先新建systemd配置文件,适用CentOS 7Debian 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 <
											

开始启动:

												systemctl start rclone
												
											

设置a计划导航:

												systemctl enable rclone
												
											

其他命令:

												重启:systemctl restart rclone 停止:systemctl stop rclone 状态:systemctl status rclone
											

如果你想挂载多个网盘,那么将systemd配置文件的rclone.service改成rclone1.service即可,重启动什么的同样换成rclone1

秘密导航a计划亚洲日韩

												#解决Rclone挂载Google Drive时上传失败和内存占用高等问题 https://www.moerats.com/archives/877/
												
											
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

免责声明:内容来自用户上传发布或新闻客户端自媒体,本站仅提供信息存储空间服务,如违规请联系删除。

a计划导航 网站部署 秘密导航a计划 /www.pedrofsn.net/2023/03/241857.html

如遇资源失效请马上联系微信进行退款

常见问题

  • 答:资源大部分来源于网络和本站作者若有侵权请您联系管理员删除2523030730

  • 玩技平台的主要负责内容是提供给作者售卖资源的平台,买家有对作者投诉的权利,投诉成功后会获取相应的补偿机制。官方唯一投诉通道客服QQ:2523030730转接人工服务,投诉专属客服工号【2】

  • 本站已开启了作者实名认证,在购买商品时请尽量选择已认证的作者,不用担心跑路和无人售后的问题。如果出现问题,本站将采取报警的方式来指正作者进行诈骗行为,并将其身份资料提供给警方处理。

  • 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。

秘密导航a计划亚洲日韩

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 工作日在线 专业服务

  • 0 +

    访问总数

  • 0 +

    会员总数

  • 0 +

    资源总数

  • 0 +

    今日发布

  • 0 +

    本周发布

  • 0 +

    运行天数

资源在于分享,创作来源想象

a计划导航是国内优秀的程序开发团队, 超过6年开发经验,专注主题开发建站, UI设计,seo等服务;并提供有保障的维护及售后

© 2017-2023 a计划导航 - pedrofsn.net & WordPress Theme. All rights reserved 网站地图

秘密导航a计划影视app

1.如遇资源失效请您联系客服或提交工单处理
2.本站部分资源以邮箱方式发送务必绑定邮箱
3.合作认证作者投诉建议软文投稿请联系客服
4.闪客网盘skpan.cn现在下载加速器需要收费
5.本站idc机房正式上架投入使用www.baiduvps.com

我已知晓了