必要条件:你懂得
分别在ssh中执行如下代码
sudo apt-get install python-pip sudo apt-get install build-essential python-dev sudo pip install gdrivefs
注意,当执行最后一句代码时可能会引发错误:
ERROR: Cannot uninstall ‘httplib2’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
此时先通过sudo -H pip install --ignore-installed -U httplib2
更新一下httplib2再重新上述步骤即可。
分别执行如下代码,并进行验证与挂载即可
gdfstool auth_automatic gdfs default /mnt/gdrivefs
请使用gdfstool auth_get_url
,并将返回的网址在本机浏览器中打开并进行认证,不要忘记授予相应的权限。
最终将验证代码通过gdfstool auth_write "验证代码"
保存。如下图所示:
最终得到Authorization code recorded即可。
sudo mkdir /mnt/gdrivefs # 设定本地挂载文件夹 gdfs -o allow_other default /mnt/gdrivefs # 开始挂载
记得路径要一致,成功挂载后/mnt/gdrivefs下就是你的Google网络硬盘中的内容。