새 폴더 크기가 이전 폴더보다 큽니다 - ext4 exFAT

새 폴더 크기가 이전 폴더보다 큽니다 - ext4 exFAT

이전 폴더를 새 하드 드라이브에 복사했는데, 복사한 후에 폴더가 차지하는 파일 크기가 1.9TB에서 2.7TB로 늘어났습니다.

기존 하드 드라이브: WD MyBook ext4 8TB, 새 하드 드라이브: WD MyBook exFAT 4TB

다음은 fdisk 출력입니다:

root@node1:/# fdisk -l /dev/sda
Disk /dev/sda: 7.28 TiB, 8001563222016 bytes, 15628053168 sectors
Disk model: WDC WD80EZAZ-11T
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 2900CF01-6CDE-4725-886D-F4F57B01E0A3

Device     Start         End     Sectors  Size Type
/dev/sda1   2048 15628052479 15628050432  7.3T Linux filesystem
root@node1:/# fdisk -l /dev/sdf
Disk /dev/sdf: 3.64 TiB, 4000786153472 bytes, 7814035456 sectors
Disk model: My Book 25EE    
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 972F419C-FC67-4D33-BCE7-71A28F06D61F

Device     Start        End    Sectors  Size Type
/dev/sdf1   2048 7814033407 7814031360  3.6T Microsoft basic data

섹터 크기는 동일한 것으로 보입니다.

폴더를 동기화하는 명령은 입니다 rsync -ah --recursive old new.

ext4를 사용하여 새 하드 드라이브도 포맷해야 합니까? 문제의 원인은 무엇입니까?

답변1

exFAT 파일 시스템은 ext4보다 더 간단하고 원시적인 파일 시스템입니다. Microsoft 지원 사이트에 따르면(https://support.microsoft.com/en-us/topic/default-cluster-size-for-ntfs-fat-and-exfat-9772e6f1-e31a-00d7-e18f-73169155af95) 4TB 디스크의 기본 클러스터 크기는 128KB입니다. 즉, 각 파일 크기는 128kB의 가장 가까운 배수로 반올림됩니다. 파일 슬롯이 작을 경우 오버헤드가 많이 추가됩니다.

관련 정보