Files
tldr/pages.zh/linux/xmount.md

17 lines
763 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# xmount
> 通过可选的写缓存支持,动态转换多种输入和输出硬盘映像类型。
> 使用 FUSE用户空间文件系统创建一个虚拟文件系统该系统包含输入映像的虚拟表示。
> 更多信息:<https://manned.org/xmount>。
-`.raw` 映像文件挂载到 DMG 容器文件中:
`xmount --in {{raw}} {{path/to/image.dd}} --out {{dmg}} {{mountpoint}}`
- 带有写缓存支持的 EWF 映像文件挂载到 VHD 文件中以便启动:
`xmount --cache {{path/to/cache.ovl}} --in {{ewf}} {{path/to/image.E??}} --out {{vhd}} {{mountpoint}}`
- 将第一个分区从扇区 2048 挂载到一个新的 `.raw` 映像文件中:
`xmount --offset {{2048}} --in {{raw}} {{path/to/image.dd}} --out {{raw}} {{mountpoint}}`