如何在短时间内制作具有特定大小的文件?

问题描述 投票:0回答:1

当我使用“ truncate -s”来创建10 GB的文件时,必须等待至少2分钟才能完成。Linux或bash命令中有什么功能可以快速创建10gig上限的文件?

linux bash ubuntu makefile
1个回答
0
投票

fallocate,它可用于快速分配任意大小的文件:

$ fallocate -l 10G ./largefile
$ ls -lh ./largefile
-rw-r--r-- 1 user group 10G Nov 18 11:29 largefile
© www.soinside.com 2019 - 2024. All rights reserved.