diff options
author | Mürsel Türk | 2022-10-04 19:45:06 +0200 |
---|---|---|
committer | Mürsel Türk | 2022-10-04 19:45:06 +0200 |
commit | 4caa5f6b08cc54705b0a7526880e87a042a6743c (patch) | |
tree | b7317488026be58bd86ed54d1674cf9a86dfe12c /tools | |
parent | Add support for gentoo linux (diff) | |
download | vm-inspector-4caa5f6b08cc54705b0a7526880e87a042a6743c.tar.gz vm-inspector-4caa5f6b08cc54705b0a7526880e87a042a6743c.tar.xz vm-inspector-4caa5f6b08cc54705b0a7526880e87a042a6743c.zip |
Use auto-detecting instead of forcing the format
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nbdfuse.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/nbdfuse.py b/tools/nbdfuse.py index b7a4997..09591ea 100644 --- a/tools/nbdfuse.py +++ b/tools/nbdfuse.py @@ -13,8 +13,8 @@ L = logging.getLogger(__name__) @log def mount(path): - """Mount a VMware Virtual Machine Disk (VMDK) file as a RAW image file in - the local filesystem with read-only support using `qemu-nbd` + `nbdfuse`. + """Mount a disk image file as a RAW image file in the local filesystem with + read-only support using `qemu-nbd` + `nbdfuse`. See also: https://manpages.debian.org/bullseye/qemu-utils/qemu-nbd.8.en.html @@ -24,7 +24,7 @@ def mount(path): $ sudo apt install qemu-utils nbdfuse Args: - path (str): Path to the VMDK file. + path (str): Path to the disk image file. Returns: Path to the directory containing a single virtual file named `nbd`. @@ -37,7 +37,6 @@ def mount(path): "--socket-activation", "qemu-nbd", "--read-only", - "--format=vmdk", path ] |