如何创建“块设备”在Windows中

发布于 2024-08-08 23:43:34 字数 152 浏览 4 评论 0原文

对于熟悉 Linux 的人来说,可以创建一个模块并将其注册为块设备。这允许用户将其作为常规磁盘安装(而所有块 I/O 均由模块处理,例如 USB 大容量存储)。

有没有办法在 Windows 中做到这一点? (需要创建一个可由Windows安装的卷。原始数据将来自专有接口)。

For those familiar with Linux, it is possible to create a module and register it as a block device. This allows the user to mount it as a regular disk (while all the block I/O is handled by the module, e.g. USB mass storage).

Is there a way to do this in Windows ? (Need to create a volume mountable by Windows. The raw data will come from propriety interface).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

幸福还没到 2024-08-15 23:43:34

最简单的方法(而且并不容易!)是编写一个 Storport Miniport 驱动程序< /a>,您甚至可以使用 KMDF 来完成此操作。最新一期的 OSR 的“The NT Insider”有一篇关于如何做到这一点的文章,但这不会很容易。

不过,您会学到很多东西,所以如果您对内核开发感兴趣,这是一个很好的入门方法!

The easiest way (and it's not easy!) is to write a Storport Miniport driver, you can even do this with KMDF as well. The latest issue of OSR's "The NT Insider" has an article on how to do this, but it's not going to be any kind of easy.

You will learn a ton though, so if you're interested in kernel development, this is a good way to get started!

泛泛之交 2024-08-15 23:43:34

您可以在 http://www.acc.umu.se/~ 找到一些简单的块设备驱动程序老板/。查看 FileDisk 驱动程序,它相当于 Windows 中的 /dev/loop

You can find some simple block device drivers at http://www.acc.umu.se/~bosse/ . Look at the FileDisk driver, which is a Windows equivalent of /dev/loop

江湖正好 2024-08-15 23:43:34

查看 Truecrypt 项目。他们有一个非常好的虚拟块设备实现。

Take a look at the Truecrypt project. They have a pretty good implementation of a virtual block device.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文