aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/qemu-nbd.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/commands/qemu-nbd.md')
-rw-r--r--content/blog/commands/qemu-nbd.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/blog/commands/qemu-nbd.md b/content/blog/commands/qemu-nbd.md
index 0402876..a9a5ceb 100644
--- a/content/blog/commands/qemu-nbd.md
+++ b/content/blog/commands/qemu-nbd.md
@@ -9,11 +9,11 @@ tags:
## Usage example
-{{< highlight sh >}}
+```sh
modprobe nbd max_part=8
qemu-nbd -c /dev/nbd0 image.img
mount /dev/nbd0p1 /mnt # or vgscan && vgchange -ay
[...]
umount /mnt
qemu-nbd -d /dev/nbd0
-{{< /highlight >}}
+```