diff options
-rwxr-xr-x | debvm-create | 4 | ||||
-rwxr-xr-x | debvm-run | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/debvm-create b/debvm-create index 6026a7c..5fc8950 100755 --- a/debvm-create +++ b/debvm-create @@ -86,7 +86,7 @@ POD2MAN set -u ARCHITECTURE=$(dpkg --print-architecture) -IMAGE=rootfs.ext2 +IMAGE=rootfs.ext4 INCLUDE_PACKAGES=init MIRROR="http://deb.debian.org/debian" SIZE=$((1024*1024*1024)) @@ -304,4 +304,4 @@ truncate -s "$SIZE" "$IMAGE" /sbin/resize2fs "$IMAGE" /sbin/tune2fs -L debvm -i 0 -O extents,uninit_bg,dir_index,has_journal "$IMAGE" # Must fsck after tune2fs: https://ext4.wiki.kernel.org/index.php/UpgradeToExt4 -/sbin/fsck.ext4 -fDp rootfs.ext2 +/sbin/fsck.ext4 -fDp "$IMAGE" @@ -32,7 +32,7 @@ This configuration is skipped in the presence of this option. =item B<-i> I<image> This option specifies the location of the virtual machine image file. -By default B<rootfs.ext2> in the working directory is used. +By default B<rootfs.ext4> in the working directory is used. =item B<-s> I<sshport> @@ -60,7 +60,7 @@ POD2MAN set -u -IMAGE=rootfs.ext2 +IMAGE=rootfs.ext4 SSHPORT= GRAPHICAL= |