Rat's

在Debian/Ubuntu上使用rclone挂载Google Drive网盘
说明:我们很多人喜欢用VPS做离线下载,不过由于有的服务器硬盘太小了,装不了太多电影资源啥的,我们就需要想办法了,...
扫描右侧二维码阅读全文
17
2018/01

在Debian/Ubuntu上使用rclone挂载Google Drive网盘

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

说明

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

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

初始化配置和挂载方法和下面一样,开机自启可参考该教程→传送门

安装

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

开机自启

先新建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 <<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

相关链接

#解决Rclone挂载Google Drive时上传失败和内存占用高等问题
https://www.moerats.com/archives/877/
Vultr新用户注册送100美元/16个机房按小时计费,支持支付宝,【点击查看】。
最后修改:2020 年 04 月 29 日 01 : 00 PM

发表评论

253 条评论

  1. kk

    阿里云轻量我试了挂不上

    1. Rat's
      @kk

      没什么提示?

  2. tw

    博主你好,按照这个教程,我把googledrive挂载到了vps上,同时安装了plex。我在添加资料库的时候,也看到了所建文件夹,但是添加之后里面没有内容。想请教一下,能不能利用这种方式,添加我googledrive里的电影到plex中?谢谢

    1. Rat's
      @tw

      按理说应该可以读取GD里的电影,你爬Q看看有不有内容,还是没有的话,检查下GD里的文件,或者看配置的时候授权对不对。

      1. tw
        @Rat's

        好的,谢谢

        1. 五仁
          @tw

          root目录权限设置777就可以了

  3. Anaheim

    求助作者大大,挂载成功了google drive到vps上面的nextcloud上面了
    但是遇到一个问题是,在google drive上传文件,在nextcloud这边看不到,但是在nextcloud这边上传文件,是可以在google drive目录下看到的,很奇怪……

    1. Rat's
      @Anaheim

      会不会是挂载的时候权限设置的不对?

      1. Anaheim
        @Rat's

        感谢回复,对照着教程又走一遍发现问题了。
        是这句“rclone mount DriveName:Folder LocalFolder --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
        ”的localfolder目录多填写了root,已经改好了
        另外想请问一下是不是这个reclone挂在外部目录google drive后速度不是很快?
        因为我在vps里面还搞了一个nextcloud,然后我把这个google drive添加到nextcloud里面了
        但是播放里面的视频文件时速度很不理想……

        1. Rat's
          @Anaheim

          挂载体验肯定不如自身硬盘的读取。

          1. Anaheim
            @Rat's

            嗯嗯,我也觉的多少会有点慢吧。
            但我之前是照着一个搭建云播平台的视频做的……正好里面涉及到vps通过rclone挂载googledrive
            我看教程视频里搭建好播放挂载的google drive目录下的视频速度还是挺快的,所以很好奇………………

            1. Rat's
              @Anaheim

              其实快不快主要与服务器网络有关,网络好,带宽大,速度明显的会有提高。

              1. Anaheim
                @Rat's

                感谢回复,我也是专门用了一条东京线路,延迟大概在99ms左右,梯子看youtb上面的4K60fps视频速度很快,所以我觉的网速问题应该不大。
                另外是下面这个自启动脚本,我修改完里面的3项内容后ctrl+x 然后y 之后询问是否保存rclone我直接回车就OK吧

                但是在运行mv rcloned /etc/init.d/rcloned命令的时候提示mv: cannot stat 'rcloned': No such file or directory
                最后提示[信息] rclone (PID 31889) 正在运行...这个……跟您图里的内容不太一样。。。

                1. Rat's
                  @Anaheim

                  意思是你当前目录没有rcloned这个文件。

                  1. Anaheim
                    @Rat's

                    这个脚本我其实执行了两次,第一次全部都OK……
                    但是因为我把这个挂载的外部储存添加到nextcloud下面了
                    于是我发现在nextcloud下操作文件可以实时在gd下面看到,但是在gd下面操作文件nextcloud这边没有反应……
                    我就以为是挂载的问题,还重新挂载和重新运行这个自启动脚本

  4. 仙侠

    2018/11/01 04:26:47 Fatal error: failed to mount FUSE fs: fusermount: exec: "fusermount": executable file not found in $PATH

    1. Rat's
      @仙侠

      OVZ架构的服务器?

      1. 仙侠
        @Rat's

        不是呀,独服。就是执行最后一步挂载云硬盘的时候出问题的

        1. Rat's
          @仙侠

          安装下fuse看看,apt install fuse -y

  5. 55555

    rclone: command not found 错误

    1. Rat's
      @55555

      第一步有安装吗?只要安装那个脚本,且不报错,就不会有这个提示了。

  6. shasha

    自启下载的脚本在那个文件夹改名呀,挂载多个盘

    1. Rat's
      @shasha

      什么意思。

  7. max

    博主我想用Google云里面VM实例来代替VPS可否挂载Google driver。

    1. 317
      @max

      我试过, 可以

    2. Rat's
      @max

      你可以试试,我没玩过。

  8. leoncoolmoon

    发现个好玩的功能:可以用这个方法把google drive 直接smba 共享在本地,然后可以作为某些支持本地转存功能摄像头的免费视频转存空间!

    1. Rat's
      @leoncoolmoon

      这个我研究下。

      1. leoncoolmoon
        @Rat's

        昨天是拿大方挂到Google drive上,结果今天收到google photo自动生成的n个新电影...现在在尝试oneDrive,应该毕竟oneDrive大得多。要是有能挂载百度网盘的工具就好了,毕竟那个更大

        1. Rat's
          @leoncoolmoon

          其实googledrive更好用些。

          1. leoncoolmoon
            @Rat's

            是的,我发现了,one drive文件通过samba传上去后都不完整,一般就剩下100多k,也不知道是为啥。刚刚新注册了个google专门存储视频

            1. Rat's
              @leoncoolmoon

              所以我很多情况下都是用GD。

              1. leoncoolmoon
                @Rat's

                可能把10个gd合成一个大的逻辑盘吗?

                1. Rat's
                  @leoncoolmoon

                  这个没试过,你可以试试,有想象力就敢于尝试。

  9. weking

    NAME="" #rclone name名,及配置时输入的Name
    REMOTE='' #远程文件夹,Google Drive网盘里的挂载的一个文件夹
    LOCAL='' #挂载地址,VPS本地挂载目录

    请问自启动这部分,如果我需要同时挂载两个网盘(Google、OneDrive),应该如何设置呢?

    1. Rat's
      @weking

      你要是有点基础的话,自己修改脚本,像Name这些参数搞2个,下面命令也额外添加个,如果不会,你可以直接用2个自启脚本,把脚本名字变一下。

      1. weking
        @Rat's

        改好了,谢谢!

  10. Alvin獨財者

    rclone安装成功,docker安装resiliosync和cloudtorrent,下载文件到挂载的GoogleDrive文件夹却没有写入权限该如何解决?

    1. Rat's
      @Alvin獨財者

      直接使用命令把文件移动到挂载的文件夹可以么?

      1. Alvin獨財者
        @Rat's

        博主可以写一个Resiliosync+Rclone+GoogleDrive一键安装脚本么?我愿意付费,电报联系我。http://t.me/yangleitj

      2. Alvin獨財者
        @Rat's

        在vps上用命令操作都可以。直接运行还是docker运行rsync下载到挂载盘就不行,下载到其他位置就可以。文件夹权限改成777也不行。博主请帮帮我,付费也可以,我们可以用电报沟通么?

        1. Rat's
          @Alvin獨財者

          。。帮不了啊,貌似不能直接把挂载盘用作下载盘,只能建议你使用命令移动进去,至于脚本的问题,其实手动挺方便的,你说的这些博客单独都有教程,结合起来就行了。