OSX에서 iTerm을 사용하고 있습니다. (3)프레스토 악장내 zsh 구성 프레임워크로. 다음을 사용할 때 이상한 오류 메시지가 나타납니다 rsync
.
$ rsync -avz --exclude='.git' src/ remote:/dst
bash: rsync: command not found
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at /BuildRoot/Library/Caches/com.apple.xbs/Sources/rsync/rsync-51/rsync/io.c(453) [sender=2.6.9]
경로를 확인하면 rsync
다음과 같이 표시됩니다.
$ which rsync
rsync: aliased to noglob rsync
$ type -a rsync
rsync is an alias for noglob rsync
rsync is /usr/bin/rsync
noglob
프레즈토가 매크로를 이용해 선언한 별칭 인 것 같습니다 . 또한 rsync 명령을 호출해 보았지만 /usr/bin/rsync
도움이 되지 않았습니다.
여기서 무슨 일이 벌어지고 있는지 아시나요?
답변1
rsync
원격 컴퓨터에 설치해야 한다는 것이 밝혀졌습니다 . 방금 해봤는데 지금은 아주 잘 작동합니다.