我只是好奇为什么 dd 命令将虚拟文件的大小限制为大约 2.1GB
[aesteban@localhost ~]$ dd if=/dev/zero of=test.img bs=3G count=1
0+1 records in
0+1 records out
2147479552 bytes (2.1 GB) copied, 10.0044 s, 215 MB/s
[aesteban@localhost ~]$ ls -sh test.img
2.0G test.img
我在上面看到我指定了 3GB,但文件只有 2.1GB,有什么想法吗?
谢谢