当我使用“ truncate -s”来创建10 GB的文件时,必须等待至少2分钟才能完成。Linux或bash命令中有什么功能可以快速创建10gig上限的文件?
fallocate,它可用于快速分配任意大小的文件:
fallocate
$ fallocate -l 10G ./largefile $ ls -lh ./largefile -rw-r--r-- 1 user group 10G Nov 18 11:29 largefile