Windows/rsync: Difference between revisions

From Omnia
Jump to navigation Jump to search
(Created page with "== Rsync to local drive not working == It uses cygdrive <ref>https://serverfault.com/questions/615355/windows-rsync-from-different-local-drive-other-than-c-to-remote</ref> rsync xyz /cygdrive/c/... == keywords ==")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== quick msys2 rsync ==
Windows Install Rsync
https://github.com/kennethburgener/win-install-rsync
Install - run within Git-Bash:
curl https://raw.githubusercontent.com/kennethburgener/win-install-rsync/refs/heads/main/install-rsync.sh -o install-rsync.sh
bash install-rsync.sh
Install with git:
git clone https://github.com/kennethburgener/win-install-rsync
cd win-install-rsync
bash install-rsync.sh
Based on https://scicomp.aalto.fi/scicomp/rsynconwindows/
See also: https://ayewo.com/how-to-install-rsync-on-windows/
== winget msys2 rsync ==
Install MSYS2 with winget
winget install MSYS2.MSYS2
pacman -S rsync
== Install with Choco ==
choco install rsync
== Rsync to local drive not working ==
== Rsync to local drive not working ==



Latest revision as of 16:47, 14 April 2026

quick msys2 rsync

Windows Install Rsync
https://github.com/kennethburgener/win-install-rsync

Install - run within Git-Bash:

curl https://raw.githubusercontent.com/kennethburgener/win-install-rsync/refs/heads/main/install-rsync.sh -o install-rsync.sh
bash install-rsync.sh

Install with git:

git clone https://github.com/kennethburgener/win-install-rsync
cd win-install-rsync
bash install-rsync.sh

Based on https://scicomp.aalto.fi/scicomp/rsynconwindows/

See also: https://ayewo.com/how-to-install-rsync-on-windows/

winget msys2 rsync

Install MSYS2 with winget

winget install MSYS2.MSYS2
pacman -S rsync

Install with Choco

choco install rsync

Rsync to local drive not working

It uses cygdrive [1]

rsync xyz /cygdrive/c/...

keywords