‘虚拟’文件
有时我会下载被分成多个块的大文件,例如,将一个 1GByte 文件分成十个块,每个块 100MByte。目前,我必须将所有文件连接到一个新文件中才能作为一个整体进行访问。我现在想知道是否可以将这些块分组到虚拟文件中(类似于虚拟文件系统),从而避免这种复制。顺便说一句,我使用的是 GNU/Linux 机器。
Sometimes I'm downloading big files which have been split into chunks, say, a 1GByte file into ten chunks with 100MByte each. Currently, I have to concatenate all files into a new file to be able to access it as a whole. I now wonder whether it is possible to group these chunks into a virtual file (similar to virtual file systems), avoiding this copying. BTW, I'm using a GNU/Linux box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 FUSE 来制作类似的东西。但这可能不值得,因为:
You could use FUSE to make something like this. But it probably isn't worth it, because: