确定原始磁盘扇区是否正在使用
我正在尝试使用 open(2)
、lssek[64](2)
和 write(2)
编写可用空间归零器。我正在尝试确定磁盘扇区正在使用中。
我查看了 coreutils 中的 dd(1) ,但该实用程序没有执行类似的检查。在 Windows 世界中,我可以调用 使用 FSCTL_GET_VOLUME_BITMAP 的 DeviceIoControl。
给定一个原始扇区,是否有一个系统调用可以让我确定该扇区是否正在使用?
I'm trying to write a free space zeroizer using open(2)
, lssek[64](2)
, and write(2)
. I am trying to determine of a disk sector is in use.
I have took a look at dd(1)
from coreutils, but the utility is not performing similar checks. In the Windows world, I could call DeviceIoControl with FSCTL_GET_VOLUME_BITMAP.
Given a raw sector, is there a system call which allows me to determine if the sector is in use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
完成此操作的传统方法(因为您的方法受到文件系统损坏的竞争条件的影响)是创建一个巨大的文件,将其归零,然后删除该文件。事实上,您可以直接使用 sh 执行此操作,不需要文件:
The traditional way this is accomplished (since your method is subject to filesystem-corrupting race conditions), is to create a giant file, zero it, then delete the file. In fact, you can do this with sh directly, no need for a file: