From 54008ae82cc1a2cd87cf7c17857eeac3eafe3bbc Mon Sep 17 00:00:00 2001 From: dweinholz Date: Thu, 15 Aug 2024 09:40:14 +0200 Subject: [PATCH] Update volumes.md --- wiki/simple_vm/volumes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/simple_vm/volumes.md b/wiki/simple_vm/volumes.md index 4e086dd..829b824 100644 --- a/wiki/simple_vm/volumes.md +++ b/wiki/simple_vm/volumes.md @@ -127,7 +127,7 @@ In the table from the example output, the device you look for would be vde. Format the volume with a filesystem, e.g. `ext4` or `xfs`: ```shell -mkfs.ext4 /dev/vdx +sudo mkfs.ext4 /dev/vdx ``` ## Mount a volume @@ -169,7 +169,7 @@ lsblk -o NAME,SIZE,MOUNTPOINT,FSTYPE,TYPE | egrep -v "^loop" If you don't need the volume you can unmount it with: ```shell -umount /dev/device_name +sudo umount /dev/device_name ``` ### After a vm restart