我正在运行gsutil rsync,结果就是。
# gsutil -m rsync /mydata/ gs://mybucket/
WARNING: gsutil rsync uses hashes when modification time is not available at
both the source and destination. Your crcmod installation isn't using the
module's C extension, so checksumming will run very slowly. If this is your
first rsync since updating gsutil, this rsync can take significantly longer than
usual. For help installing the extension, please see "gsutil help crcmod".
Building synchronization state...
Starting synchronization...
然后我尝试通过“ps -aux”命令知道google rsync是否正常工作,但是没有gsutil或类似rsync的东西。
在大约30分钟之后,我确实检查谷歌桶,但没有任何改变。没有上传任何内容。我怎么知道google rsync是否正在运行 任何人都可以帮助我
答案 0 :(得分:0)
我遇到了问题。在我的情况下,我想要同步的文件夹有一个子文件夹。
# gsutil -m rsync /my_parent_folder/ gs://mybucket/
这里是我的文件:/my_parent_folder/child_folder/child_folder/my_file.txt 然后我试图同步最后一个子文件夹,并成功完成。
# gsutil -m rsync /my_parent_folder/child_folder/child_folder/ gs://mybucket/
我误解了“谷歌rsync如何工作”。我以为我运行上面的命令一次,当我的文件发生变化时,我的文件可以自动同步。 但似乎每当我想要同步文件时,我必须再次运行上面的命令。
但另一个问题。如何从父文件夹同步。我的子文件夹没有修复。它取决于日期时间和我创建文件的应用程序中的用户名等条件。