找出适合 SWAP 的块大小是多少?
dd if=/dev/zero of=/root/myswapfile bs=1M count=1024
是否有任何经验法则可以决定块大小?在任何机器上交换的最佳块大小是多少?这里是1M..
i found the following method to create swap, from here
dd if=/dev/zero of=/root/myswapfile bs=1M count=1024
Is there any thumb rule that to decide block size ? What is the best block size for Swap in any machine ? Here it is 1M..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当使用 dd 创建用于交换的常规文件时,块大小可以方便地允许 count 参数创建指定大小的文件。
dd 命令中的 bs= 不会改变底层磁盘结构。
When creating a regular file for swap using dd the blocksize is a convenience to allow the count parameter to create a file of the specified size.
The underlying disk structure is unchanged by the bs= in the dd command.