{"id":16818,"date":"2024-11-08T06:48:52","date_gmt":"2024-11-08T06:48:52","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16818"},"modified":"2024-11-08T09:32:26","modified_gmt":"2024-11-08T09:32:26","password":"","slug":"how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/","title":{"rendered":"How to copy files from a Windows Server to Linux Server using rSync"},"content":{"rendered":"\n<p>Rsync is a powerful tool for file synchronization, and when paired with SSH, it enables secure file transfers between systems. This step-by-step guide will walk you through setting up Rsync and SSH on your Windows computer and Linux server for seamless file transfers.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Setting up SSH on both Windows and Linux systems<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Windows 10 version 1809 and later includes a built-in OpenSSH client. To enable it, open PowerShell or Command Prompt and enter the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-WindowsCapability -Online | Where-Object {$_.Name -like 'OpenSSH.Client*'} | Add-WindowsCapability -Online<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The above command installs  OpenSSH client on your windows system<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"179\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png\" alt=\"\" class=\"wp-image-16831\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-300x52.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-768x134.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107.png 1267w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Once the installation is cone, you can test ssh connections using this command syntax below. Replace <strong>remote_user<\/strong> and <strong>remote_linux_server<\/strong> with real details or your linux server<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code> ssh user@remote_linux_server<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"954\" height=\"110\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-108.png\" alt=\"\" class=\"wp-image-16833\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-108.png 954w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-108-300x35.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-108-768x89.png 768w\" sizes=\"auto, (max-width: 954px) 100vw, 954px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>0n the Linux server, SSH will already be be pre-configured to work, thus no further action is needed by you.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Installing and configuring Rsync on Windows and Linux<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Rsync is usually pre-installed on Linux. However, you can install it using these commands below, depending on your Linux Distro<\/li>\n<\/ul>\n\n\n\n<p><strong>Ubuntu\/Debian<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update\nsudo apt-get install rsync<\/code><\/pre>\n\n\n\n<p><strong>Almalinux\/CentOS\/RHEL<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo <span style=\"background-color: rgba(0, 0, 0, 0.2); color: inherit; font-family: inherit; font-size: inherit;\">yum install rsync<\/span><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You also need to ensure that SSH is configured to allow Rsync connections on Linux. <\/li>\n\n\n\n<li>To do that, open this file <strong>\/etc\/ssh\/sshd_config <\/strong>using an editor of your choice, like vi, then look for the line that says\u00a0<code>Subsystem sftp \/usr\/lib\/openssh\/sftp-server<\/code>\u00a0and uncomment it (remove the \u201c at the beginning of the line).<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>vi \/etc\/ssh\/sshd_config<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save the file, then restart SSH service using the command below;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart ssh<\/code><\/pre>\n\n\n\n<p><strong>Set up Rsync On Windows <\/strong><\/p>\n\n\n\n<p>On Windows, you can install the Cygwin tool, which includes Rsync. Go to the <a href=\"https:\/\/www.cygwin.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Cygwin website<\/a> to download the installer. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"765\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-109-1024x765.png\" alt=\"\" class=\"wp-image-16834\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-109-1024x765.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-109-300x224.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-109-768x574.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-109.png 1060w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>During installation, select the &#8220;Rsync&#8221; package from the available options.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"445\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-110-1024x445.png\" alt=\"\" class=\"wp-image-16835\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-110-1024x445.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-110-300x131.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-110-768x334.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-110.png 1216w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Transferring files from Windows to Linux using Rsync and SSH<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You now have Rsync set up both on your Windows and Linux servers. Now open the Cygwin terminal  on your windows machine. You can use the search box at the botton left to search for them.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"962\" height=\"636\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-111.png\" alt=\"\" class=\"wp-image-16836\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-111.png 962w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-111-300x198.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-111-768x508.png 768w\" sizes=\"auto, (max-width: 962px) 100vw, 962px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>From the terminal, you can navigate to the location of the file that you want to move<\/li>\n<\/ul>\n\n\n\n<p><strong>Important note<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><em>When you use rsync in Cygwin, you need to check Windows directories from the \/<strong>cygdrive<\/strong> mount point. For example, if your folder to sync is located in the Downloads directory on your windows machine, the path would be something like \/cygdrive\/c\/Users\/your_username\/Downloads\/&lt;your folder>.<\/em><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For example to move to Local Disk C, I will type this below. Note that \/cygdrive\/ is then added just before C on the terminal<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>C:<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"967\" height=\"119\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-113.png\" alt=\"\" class=\"wp-image-16838\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-113.png 967w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-113-300x37.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-113-768x95.png 768w\" sizes=\"auto, (max-width: 967px) 100vw, 967px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To move to a directory in disk C, \/Users\/rootadmin, I will do as follows;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/cygdrive\/c\/Users\/rootadmin<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"722\" height=\"192\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-112.png\" alt=\"\" class=\"wp-image-16837\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-112.png 722w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-112-300x80.png 300w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You will then use the command below to copy your files from the windows server to the linux server<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>rsync -avzc --delete -e \"ssh\" \/path\/to\/local\/files user@remote_linux_server:\/path\/to\/remote\/destination<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"109\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-114-1024x109.png\" alt=\"\" class=\"wp-image-16839\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-114-1024x109.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-114-300x32.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-114-768x81.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-114.png 1208w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the above Rsync command syntax, below is what each of the sections mean;\n<ul class=\"wp-block-list\">\n<li><code>rsync<\/code>: Starts the Rsync utility.<\/li>\n\n\n\n<li><code>-avzc<\/code>: Activates these options:\n<ul class=\"wp-block-list\">\n<li><code>-a<\/code>: Preserves file attributes and permissions.<\/li>\n\n\n\n<li><code>-v<\/code>: Enables verbose mode for detailed output.<\/li>\n\n\n\n<li><code>-z<\/code>: Compresses data to reduce transfer size.<\/li>\n\n\n\n<li><code>-c<\/code>: Verifies file checksums for data integrity.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>--delete<\/code>: Removes files from the remote server that aren\u2019t in the local directory.<\/li>\n\n\n\n<li><code>-e \"ssh\"<\/code>: Uses SSH for secure transfer.<\/li>\n\n\n\n<li><code>\/path\/to\/local\/files<\/code>: Placeholder for path to the files or directory on your local machine.<\/li>\n\n\n\n<li><code>user@remote_linux_server:\/path\/to\/remote\/destination<\/code>: Placeholder for SSH username and path to the destination on the remote Linux server.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>You will need to replace the place holders with your real values<\/li>\n<\/ul>\n\n\n\n<p>When you run this command for the first time, you\u2019ll be prompted to confirm the remote server\u2019s host key. After you accept the host key, the file transfer will start, and progress details will appear in the console.<\/p>\n\n\n\n<p>In case of any issues, please check with the Truehost <strong><a href=\"https:\/\/wa.me\/19726743814\" target=\"_blank\" rel=\"noreferrer noopener\">Support team<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Rsync is a powerful tool for file synchronization, and when paired with SSH, it enables secure file transfers between systems. This step-by-step guide will walk you through setting up Rsync and SSH on your Windows computer and Linux server for seamless file transfers. Setting up SSH on both Windows and Linux systems Installing and configuring [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1880,1879,2128,2133],"doc_tag":[],"class_list":["post-16818","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-remote-access","doc_category-servers","doc_category-vps-servers","doc_category-windows-server"],"year_month":"2026-07","word_count":673,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"remote access","term_url":"https:\/\/truehost.com\/support\/docs-category\/remote-access\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"},{"term_name":"Windows Server","term_url":"https:\/\/truehost.com\/support\/docs-category\/windows-server\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to copy files from a Windows Server to Linux Server using rSync -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to copy files from a Windows Server to Linux Server using rSync -\" \/>\n<meta property=\"og:description\" content=\"Rsync is a powerful tool for file synchronization, and when paired with SSH, it enables secure file transfers between systems. This step-by-step guide will walk you through setting up Rsync and SSH on your Windows computer and Linux server for seamless file transfers. Setting up SSH on both Windows and Linux systems Installing and configuring [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-08T09:32:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/\",\"name\":\"How to copy files from a Windows Server to Linux Server using rSync -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-107-1024x179.png\",\"datePublished\":\"2024-11-08T06:48:52+00:00\",\"dateModified\":\"2024-11-08T09:32:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-107-1024x179.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-107-1024x179.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to copy files from a Windows Server to Linux Server using rSync\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to copy files from a Windows Server to Linux Server using rSync -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/","og_locale":"en_US","og_type":"article","og_title":"How to copy files from a Windows Server to Linux Server using rSync -","og_description":"Rsync is a powerful tool for file synchronization, and when paired with SSH, it enables secure file transfers between systems. This step-by-step guide will walk you through setting up Rsync and SSH on your Windows computer and Linux server for seamless file transfers. Setting up SSH on both Windows and Linux systems Installing and configuring [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/","article_modified_time":"2024-11-08T09:32:26+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/","name":"How to copy files from a Windows Server to Linux Server using rSync -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png","datePublished":"2024-11-08T06:48:52+00:00","dateModified":"2024-11-08T09:32:26+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-107-1024x179.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-copy-files-from-a-windows-server-to-linux-server-using-rsync\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to copy files from a Windows Server to Linux Server using rSync"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16818"}],"version-history":[{"count":8,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16818\/revisions"}],"predecessor-version":[{"id":16842,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16818\/revisions\/16842"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16818"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16818"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}