Filenames should be encoded in UTF-8 on disk. This is the normal case for Windows and OS X.
There is a bit more uncertainty in the Linux world, but new distributions will have UTF-8 encoded files names. If you are using an old Linux filesystem with non UTF-8 file names (eg latin1) then you can use the convmv tool to convert the filesystem to UTF-8. This tool is available in most distributions' package managers.
If an invalid (non-UTF8) filename is read, the invalid characters will be replaced with a quoted representation of the invalid bytes. The name gro\xdf will be transferred as gro‛DF. rclone will emit a debug message in this case (use -v to see), eg
인코딩 문제인데 이건...하...나중에 rsync 로 남은파일을 채워볼까 생각했지만 불확실성이 너무 컷다. 파일의 누락이 너무많았다
그래도 테스트는 그냥 진행했고 싱크속도 무지빠르고 쓸만했다.
그래서 이후에 소유권과 퍼미션을 넣어주는 작업을 궁리했다.
getfacl -R /src > file.list sed 's/src/dst/g' file.list cd /dst setfacl --restore=file.list
지금까지의 레이드는 디스크에 적합한 레이드였다. 그래서 raid controller 를 이용한 레이그 구성시에 SSD를 이용할 경우 정상적으로 퍼포먼스를 사용하지 못하거나 controller의 cache 를 disable 해서 사용하는 등의 여러가지 문제점이 발생하였다. 이런 문제점들을 개선하기위해 새로운 레이드를 sysnology에서 만든것같다.
RAID F1 F는 flash - 1은 disk 를 나타낸다고 한다.
F1은 raid5 의 방식을 차용한것으로 보입니다.
백서에선
요약하면 Synology RAID F1은 다음과 같은 이점을 제공합니다. 성능은 RAID 5에 가깝습니다. 지능형 RAID 재 구축 기존 RAID 알고리즘보다 뛰어난 플래시 내구성 8 %의 낮은 용량 오버 헤드로 높은 스토리지 효율성 (12 개의 SSD가있는 RAID F1)
페리티가 raid5보다 마지막 블록에 더 많은것으로 보입니다.
capacity of a RAID F1 array is N-1 times of smallest drive, where N is the stripe width or the number of disks.
결론은 페리티가 고정되어 읽기쓰기를 진행하여 모든 SSD가 한꺼번에 장애포인트가 되는것이 아닌 고정된 페리티를 사용하여 전체가 아닌 하나의 SSD의 수명을 소모시키는 방식입니다.
Since each write-operation involves writing to the parity block, it is expected that the parity block will be worn out in the first place. This uneven parity distribution approach will lead to that one SSD reaches its lifespan earlier than others, instead of making all SSDs reach the end of their lifespan at the same time. When one SSD fails, the customer can replace it with a new one. The characteristics of RAID F1 is similar to RAID 5. Parity blocks are XOR’ed of all other data blocks. One block is used as parity block within each stripe, so the usable capacity of a RAID F1 array is N-1 times of smallest drive, where N is the stripe width or the number of disks.
장단점이 있는방법으로 사실 뭐가 더 우월하다 보긴 어렵지만 장애포인트에 있어서 하나의 SSD만 교체하면된다는 부분은 매우 긍정적으로 생각할수 있을거 같습니다.