Hello to everyone.
can someone explain why,when I should copy data from :
or even when I should create the image of a disk with dd,if I use a real installation of Linux with the ext4 fs instead of FreeBSD with ufs or zfs fs,the first one is much faster ? This is the reason why I created a qemu vm to do the same :
but unfortunately I haven't reached the same speed that I have if I was running a physical installation of Linux. Instead,the data transfer speed is even worse than using FreeBSD with zfs or ufs fs. In terms of speed,is a native ext4 fs better than zfs or ufs under FreeBSD ? Why using a qemu vm is a bad idea ? Using a bhyve vm is better ?
can someone explain why,when I should copy data from :
from ufs to zfs disks
from zfs to ext4 disks and viceversa
from ext4 disks to ntfs disks and viceversa
or even when I should create the image of a disk with dd,if I use a real installation of Linux with the ext4 fs instead of FreeBSD with ufs or zfs fs,the first one is much faster ? This is the reason why I created a qemu vm to do the same :
Code:
qemu-system-x86_64-debian_fs -machine q35 -cpu kvm64,hv_relaxed,hv_time,hv_synic \
-m 1G -vga std -drive file=Debian-fs.img,format=raw -drive file=/dev/$vmdiskA,format=raw \
-drive file=/dev/$vmdiskB,format=raw -rtc base=localtime \
-device usb-ehci,id=usb,bus=pcie.0,addr=0x3 -device usb-tablet -device usb-kbd \
-smbios type=2 -nodefaults -netdev tap,id=mynet0,ifname=tap19,script=no,downscript=no \
-device e1000,netdev=mynet0,mac=52:55:00:d1:55:01 -device ich9-ahci,id=sata \
-drive if=pflash,format=raw,readonly=on,file=/usr/local/share/edk2-qemu/QEMU_UEFI_CODE-x86_64.fd \
-drive if=pflash,format=raw,file=/usr/local/share/edk2-qemu/QEMU_UEFI_VARS-x86_64.fd \
-nographic -serial none -monitor none &
but unfortunately I haven't reached the same speed that I have if I was running a physical installation of Linux. Instead,the data transfer speed is even worse than using FreeBSD with zfs or ufs fs. In terms of speed,is a native ext4 fs better than zfs or ufs under FreeBSD ? Why using a qemu vm is a bad idea ? Using a bhyve vm is better ?