LBA 级磁盘访问
向 SATA 磁盘发出磁盘命令(从 lba n 等读取 k 个块)的最佳方法是什么?操作系统的选择并不重要。我还需要能够发出 ATA 命令。我宁愿通过工具/应用程序来完成此操作,而不是以编程方式使用 ioctl。
What's the best way to issue disk commands (read k blocks from lba n etc.) to a SATA disk? The choice of OS does not matter. I also need to be able to issue ATA commands. I would rather do this through a tool/application than use ioctls programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Linux 上,http://tldp.org/HOWTO/SCSI-Generic-HOWTO/ 正是您想要的 - 您可以从用户模式 100% 控制驱动器,就像在内核模式下一样。如今,SATA 驱动器在 Linux 上注册为 SCSI(现代 ATA 命令有意与 SCSI 命令相似)
On Linux, http://tldp.org/HOWTO/SCSI-Generic-HOWTO/ is exactly what you're going for - you can control the drive 100% from user mode, just like you would have to in kernel mode. SATA drives register as SCSI on Linux these days (and modern ATA commands are intentionally similar to SCSI commands)