{"id":984,"date":"2009-06-10T11:15:44","date_gmt":"2009-06-10T16:15:44","guid":{"rendered":"http:\/\/jianmingli.com\/wp\/?p=984"},"modified":"2009-06-23T10:54:02","modified_gmt":"2009-06-23T15:54:02","slug":"rsync","status":"publish","type":"post","link":"https:\/\/jianmingli.com\/wp\/?p=984","title":{"rendered":"rsync"},"content":{"rendered":"<p>rsync is a versatile file copying utility. It can:<br \/>\n* Copy locally<\/p>\n<pre lang=\"bash\">\r\n rsync [OPTION...] SRC... [DEST]\r\n\r\n rsync test1.txt test2.txt\r\n<\/pre>\n<p>* Copy remotely to\/from another host over<br \/>\n&#8211; any remote shell<br \/>\n&#8211; default to ssh<\/p>\n<pre lang=\"bash\">\r\nPull: rsync [OPTION...] [USER@]HOST:SRC... [DEST]\r\nPush: rsync [OPTION...] SRC... [USER@]HOST:DEST\r\n\r\n# Copy local directory \"DirToCopy\" and all its contents to remotebox in \/home\/me directory\r\n# using archive mode and compression mode\r\nrsync -az .\/DirToCopy me@remotebox:\/home\/me\r\n\r\n# As as above.\r\n# Notice the slash in .\/DirToCopy\/ meaning ONLY directory contents are copied.\r\nrsync -az .\/DirToCopy\/ me@remotebox:\/home\/me\/DirToCopy\r\n\r\n# Delete extraneous files from the receiving side\r\n# Exclude error directories\r\nrsync -azq --delete --exclude=**\/error\/ .\/DirToCopy me@remotebox:\/home\/me\r\n\r\n# Pull and sync your web site every five minutes\r\n*\/5 * * * * \/usr\/bin\/rsync -azq --delete --exclude=**\/error --exclude=**\/pictures -e ssh me@server1.example.com:\/var\/www\/ \/var\/www\/ \r\n<\/pre>\n<p>&#8211; a remote rsync daemon<\/p>\n<pre lang=\"bash\">\r\n  Pull: rsync [OPTION...] [USER@]HOST::SRC... [DEST]\r\n        rsync [OPTION...] rsync:\/\/[USER@]HOST[:PORT]\/SRC... [DEST]\r\n  Push: rsync [OPTION...] SRC... [USER@]HOST::DEST\r\n        rsync [OPTION...] SRC... rsync:\/\/[USER@]HOST[:PORT]\/DEST\r\n<\/pre>\n<p>* Sending only the differences between source files and destination files<br \/>\n&#8211; uses delta-transfer algorithm (can be turned off with -W or &#8211;whole-file option<br \/>\n&#8211; checks file sizes and last modified time<\/p>\n<p>References<br \/>\n* <a href=\"http:\/\/www.samba.org\/ftp\/rsync\/rsync.html\">http:\/\/www.samba.org\/ftp\/rsync\/rsync.html<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>rsync is a versatile file copying utility. It can: * Copy locally rsync [OPTION&#8230;] SRC&#8230; [DEST] rsync test1.txt test2.txt * Copy remotely to\/from another host over &#8211; any remote shell &#8211; default to ssh Pull: rsync [OPTION&#8230;] [USER@]HOST:SRC&#8230; [DEST] Push: &hellip; <a href=\"https:\/\/jianmingli.com\/wp\/?p=984\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[33],"tags":[],"class_list":["post-984","post","type-post","status-publish","format-standard","hentry","category-unix"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/s8cRUO-rsync","_links":{"self":[{"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/posts\/984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=984"}],"version-history":[{"count":7,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/posts\/984\/revisions"}],"predecessor-version":[{"id":1022,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=\/wp\/v2\/posts\/984\/revisions\/1022"}],"wp:attachment":[{"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=984"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jianmingli.com\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}