我想创建一个100GB的文件用作文件系统。该文件将存储在加密的卷上,因此不需要对文件/文件系统本身进行(进一步)加密。搜索显示了许多不同的方法。有些使用losetup
,有些则没有。以下是可接受的方法吗?
$ dd if=/dev/zero of=~/theFile.img bs=1M count=10240
$ mkfs.ext4 ~/theFile.img # will prompt about block special device
$ sudo mount -o loop ~/theFile.img /media/mountPoint
3
除了创建10GB文件而不是100GB文件外,非常感谢,将计数更改为102400满足了我的需求:)