只需設定一個 8TB 磁碟,將 gparted 作為 GPT 並使用單一 ext4 分割區,但現在掛載後顯示: /dev/sdc1 7,3T 38G 6,9T 1% /mnt/BACKUP
為什麼只有7.3T可用,ext4會使用另外的700GB?如果我設定多個分割區,我可以獲得更多的資料空間嗎?即2個分割區4TB會改變這種情況嗎?
謝謝,BR
答案1
因為 HDD 供應商很少(如果有的話)使用 KiB/MiB/GiB/TiB (x1024) 作為其儲存的表示法,而是使用 KB/MB/GB/TB (x1000)。您的作業系統/檔案系統使用二進位多個前綴,這與十進位多個前綴的行業標準相反。
Examples and comparisons with SI prefixes
one mebibyte 1 MiB = 220 Byte = 1,048,576 Byte
one megabyte 1 MB = 106 Byte = 1,000,000 Byte
one gibibyte 1 GiB = 230 Byte = 1,073,741,824 Byte
one gigabyte 1 GB = 109 Byte = 1,000,000,000 Byte
one tebibyte 1 TiB = 240 Byte = 1,099,511,627,776 Byte
one terabyte 1 TB = 1012 Byte = 1,000,000,000,000 Byte
8 TB = 8000000000000 B
Byte based with decimal-multiple prefixes (powers of 10):
8000000000 KB (kilobyte)
8000000 MB (megabyte)
8000 GB (gigabyte)
8 TB (terabyte) Byte based with binary-multiple prefixes (powers of 2):
7812500000 KiB (kibibyte)
7629394.53125 MiB (mebibyte)
7450.58059692383 GiB (gibibyte)
7.27595761418343 TiB (tebibyte)
來源:http://wintelguy.com/tb2tib.html
Ext4 肯定會增加開銷,但它應該更像是大約 1.5% 的空間。
答案2
預留空間
預設情況下,ext4 為 root 保留 5% 的空間。您可以tune2fs -m percentage device
根據您的情況使用 so 進行調整tune2fs -m0 /dev/sdc
。
這應該會給你騰出空間。