Hello,
I installed cwRsync today. Unfortunately an Error/Warning occured during the first tests and I was asked to report this to you. Regards Knut Franzke 1st test: c:\Users\49175>test_cwrsync 1 [main] rsync 13104 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com <mailto:cygwin@cygwin.com> 2nd Test: see the screenshot c:\Users\49175>test_cwrsync ALLUSERSPROFILE=C:\ProgramData APPDATA=C:\Users\49175\AppData\Roaming COMMANDER_INI=C:\Users\49175\TotalCmd_New\wincmd.ini COMMANDER_PATH=C:\Users\49175\TotalCmd_New CommonProgramFiles=C:\Program Files (x86)\Common Files CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files CommonProgramW6432=C:\Program Files\Common Files COMPUTERNAME=DESKTOP-83F44P2 ComSpec=C:\Windows\system32\cmd.exe CWOLDPATH=C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Python27\;C:\Python27\Scripts;C:\Windows\syste m32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShel l\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\PuTTY\;c:\Users\49175\TotalCmd_New;C:\Program Files\Git\cmd;C:\Users\49175\AppData\Local\Microsoft\WindowsApps CWRSYNCHOME=C:\Program Files (x86)\CWRSYNC DriverData=C:\Windows\System32\Drivers\DriverData FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer FPS_BROWSER_USER_PROFILE_STRING=Default HOME=C:\Users\49175 HOMEDRIVE=C: HOMEPATH=\Users\49175 KMP_DUPLICATE_LIB_OK=TRUE LOCALAPPDATA=C:\Users\49175\AppData\Local LOGONSERVER=\\DESKTOP-83F44P2 MKL_SERIAL=YES NUMBER_OF_PROCESSORS=4 OneDrive=C:\Users\49175\OneDrive OneDriveConsumer=C:\Users\49175\OneDrive OS=Windows_NT Path=C:\Program Files (x86)\CWRSYNC\BIN;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Python27\;C:\Python27\Scripts;C:\Windows\syste m32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShel l\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\PuTTY\;c:\Users\49175\TotalCmd_New;C:\Program Files\Git\cmd;C:\Users\49175\AppData\Local\Microsoft\WindowsApps PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC PROCESSOR_ARCHITECTURE=x86 PROCESSOR_ARCHITEW6432=AMD64 PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 126 Stepping 5, GenuineIntel PROCESSOR_LEVEL=6 PROCESSOR_REVISION=7e05 ProgramData=C:\ProgramData ProgramFiles=C:\Program Files (x86) ProgramFiles(x86)=C:\Program Files (x86) ProgramW6432=C:\Program Files PROMPT=$P$G PSModulePath=C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\M odules PUBLIC=C:\Users\Public SESSIONNAME=Console SystemDrive=C: SystemRoot=C:\Windows TEMP=C:\Users\49175\AppData\Local\Temp TMP=C:\Users\49175\AppData\Local\Temp USERDOMAIN=DESKTOP-83F44P2 USERDOMAIN_ROAMINGPROFILE=DESKTOP-83F44P2 USERNAME=knut USERPROFILE=C:\Users\49175 windir=C:\Windows 0 [main] rsync 11576 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com <mailto:cygwin@cygwin.com> The test_cwrsync.cmd looks like: @ECHO OFF REM ***************************************************************** REM REM CWRSYNC.CMD - Batch file template to start your rsync command (s). REM REM By Tevfik K. (http://itefix.no) REM ***************************************************************** REM Make environment variable changes local to this batch file SETLOCAL REM ** CUSTOMIZE ** Specify where to find rsync and related files (C:\CWRSYNC) SET CWRSYNCHOME=%PROGRAMFILES%\CWRSYNC REM Set HOME variable to your windows home directory. That makes sure REM that ssh command creates known_hosts in a directory you have access. SET HOME=%HOMEDRIVE%%HOMEPATH% REM Make cwRsync home as a part of system PATH to find required DLLs SET CWOLDPATH=%PATH% SET PATH=%CWRSYNCHOME%\BIN;%PATH% REM Windows paths may contain a colon (:) as a part of drive designation and REM backslashes (example c:\, g:\). However, in rsync syntax, a colon in a REM path means searching for a remote host. Solution: use absolute path 'a la unix', REM replace backslashes (\) with slashes (/) and put -/cygdrive/- in front of the REM drive letter: REM REM Example : C:\WORK\* --> /cygdrive/c/work/* REM REM Example 1 - rsync recursively to a unix server with an openssh server : REM REM rsync -r /cygdrive/c/work/ remotehost:/home/user/work/ REM REM Example 2 - Local rsync recursively REM REM rsync -r /cygdrive/c/work/ /cygdrive/d/work/doc/ REM REM Example 3 - rsync to an rsync server recursively : REM (Double colons?? YES!!) REM REM rsync -r /cygdrive/c/doc/ remotehost::module/doc REM REM Rsync is a very powerful tool. Please look at documentation for other options. REM REM ** CUSTOMIZE ** Enter your rsync command(s) here set rsync -rn /cygdrive/c/Users/49175/Documents/Arduino/Sketchbook cygdrive/x/test/Sketchbook -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple