다음 명령을 사용하여 외장 HDD의 ExFAT 파티션과 동기화를 시도했습니다.
rsync -avvP --remove-source-files /path/to/sourceDir /path/to/destDir
하지만 이런 유형의 오류가 여러 번 발생했습니다.
rsync: [generator] symlink "/destDir/subdirectory/
" -> "A" failed: Function not implemented (38)
rsync 재귀 복사 작업이 끝나면 다음 오류가 인쇄됩니다.
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1330) [sender=3.2.3]
보낸 사람은 ext4 파티션이 있는 내부 하드 드라이브입니다.
답변1
rsync 옵션을 사용하는 경우:
rsync -a
당신은 얻을 것이다기능이 구현되지 않은 오류좋다:
rsync: [generator] symlink "/destDir/subdirectory/
" -> "A" failed: Function not implemented (38)
ExFAT 파일 시스템의 한계로 인해. ExFAT는 기호 링크를 지원하지 않으므로 rsync는 ExFAT 파일 시스템에서 기호 링크를 생성할 수 없습니다.1 2. 이 답변을 참조하세요질문가능한 해결책.
소문삼.
ExFAT는 또한 권한, 소유자 또는 그룹을 이해하지 못합니다.4따라서 다음 명령을 사용하여 ExFAT 파티션에 동기화하면
rsync
다음과 같은 오류가 발생합니다.
rsync: mkstemp … failed: Function not implemented (38)