如何使用 bash 测试文件系统的目录限制
我需要测试可以在文件系统(网络安装驱动器和本地(USB)驱动器)上创建多少目录和文件。我现在使用这个 bash 行:
for i in {0..999999}; do mkdir -p $i; pushd $i; done
我知道它可能可以做得更好,我想知道如何做。 (在bash中,不太复杂)
I need to test how many directories and files I can create on a filesystem (network mounted and local (usb) drives). I now use this bash line:
for i in {0..999999}; do mkdir -p $i; pushd $i; done
I know that it probably can be done better and I'd like to know how to. (in bash, not too complicated)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
任何文件/目录都使用 inode 表示,采用查看 df -i ,您应该大致了解可以创建/使用的文件/目录的数量。
Any file/directory is represented using an inode, take a look at
df -i
and you should get an overview of the number of files/directories you have the possiblity to create/use.创建类似
./a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/ 的内容一个/
...Creates something like
./a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/
...cd方法实际上工作得更好更快...我的ext4 USB棒开始模拟大约1040个文件夹...
网络部分是测试我的wins2k3配置,但我的virtualbox此刻失败了,因为我认为我搞砸了一些东西...
The cd method actually works better and faster... My ext4 usb stick starts to mock at about 1040 folders...
And the network part is to test my wins2k3 config, but my virtualbox fails at the moment because I think I screwed something up...