linuxfromscratch:qemu

qemu-system-x86_64 -accel whpx,kernel-irqchip=off -m 4G -smp 4 ^
-drive file=temp_boot,index=0 -drive file=lfs-12.4,index=1 -drive file=lfs-swap,format=raw,index=2 ^
-device virtio-net-pci,netdev=vnet0 -netdev user,id=vnet0,hostfwd=tcp::2222-:22

  • 가상 CPU 설정
    • -accel whpx,kernel-irqchip=off -smp 4
  • 메모리 설정
    • -m 4G
  • Storage 설정
    • -drive file=<file_name>,format=<type>,index=<order>
  • Network 설정
    • -device virtio-net-pci,netdev=vnet0
    • -netdev user,id=vnet0,hostfwd=tcp::2222-:22
  • linuxfromscratch/qemu.txt
  • 마지막으로 수정됨: 2025/12/06 13:05
  • 저자 baecy