USB 하드 디스크에 대한 간단한 rsync를 시도하려고합니다. 명령은
rsync -az --modify-window=2 /home /mnt/exthd/tmp/
나는 이것을 루트로 실행하고 있습니다.
그러나 권한이 충분하지 않은 것으로 보이는 많은 오류가 발생합니다.
rsync: chown "/mnt/exthd/tmp/home/someuser" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/someuser/.bash_logout" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/someuser/.bash_profile" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/someuser/.bashrc" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/guest" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/guest/.bash_logout" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/guest/.bash_profile" failed: Operation not permitted (1)
rsync: chown "/mnt/exthd/tmp/home/guest/.bashrc" failed: Operation not permitted (1)
rsync: symlink "/mnt/exthd/tmp/home/guest/fred2" -> "fred" failed: Operation not permitted (1)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1042) [sender=3.0.7]
이것은 버전 3.0.7입니다. --super 옵션을 사용해 보았습니다. 어떤 아이디어?
USB 디스크의 파일 시스템은 무엇입니까?
—
Caleb
외장 디스크가 FAT (32)로 포맷되어 있습니까? FAT는 파일 소유권 속성을 모르기 때문에 작동하지 않습니다.
—
Sven
@ Caleb 나는 그것이 FAT라고 생각할 것입니다. 어떻게 말합니까?
—
Tim Enchanter
달리는
—
Caleb
mount | grep /mnt/exthd
것이 당신에게 말해야합니다.
@Caleb는 vfat라고 말합니다
—
Tim Enchanter