GO9PTERM 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #!/bin/bash
  2. set -e
  3. trap : 2
  4. $HARVEY/util/ufs -root=$HARVEY &
  5. ufspid=$!
  6. export machineflag=q35
  7. if [ "$(uname)" = "Linux" ] && [ -e /dev/kvm ]; then
  8. export kvmflag='-enable-kvm'
  9. export machineflag='pc,accel=kvm'
  10. if [ ! -w /dev/kvm ]; then
  11. # we don't have access as a regular user
  12. export kvmdo=sudo
  13. fi
  14. fi
  15. read -r cmd <<EOF
  16. $kvmdo qemu-system-x86_64 -s -cpu Opteron_G1 -smp 2 -m 2048 $kvmflag \
  17. -serial stdio \
  18. --machine $machineflag \
  19. -net nic,model=rtl8139 \
  20. -net user,id=user.0,\
  21. hostfwd=tcp::5555-:1522,\
  22. hostfwd=tcp::9999-:9,\
  23. hostfwd=tcp::17010-:17010,\
  24. hostfwd=tcp::5356-:5356,\
  25. hostfwd=tcp::17013-:17013 \
  26. -net dump,file=/tmp/vm0.pcap \
  27. -append "service=terminal nobootprompt=tcp maxcores=1024 fs=10.0.2.2 auth=10.0.2.2 nvram=/boot/nvram nvrlen=512 nvroff=0 acpiirq=1 mouseport=ps2 vgasize=1024x768x24 monitor=vesa" \
  28. -kernel $HARVEY/sys/src/9/amd64/harvey.32bit $*
  29. EOF
  30. echo $cmd
  31. eval $cmd
  32. kill $ufspid
  33. wait
  34. # TO ENABLE FACTOTUM replace append with this
  35. #-append "nobootprompt=tcp maxcores=1024 fs=10.0.2.2 auth=10.0.2.2 nvram=/boot/nvram nvrlen=512 nvroff=0" \
  36. # -nographic \
  37. #-S -gdb tcp::1234 \
  38. # -nographic \
  39. #-kernel mnt/hdd/kernel $*
  40. # if you need the dump.
  41. #-net dump,file=/tmp/vm0.pcap \
  42. #sudo qemu-system-x86_64 -s -cpu phenom -smp 8 -m 4096 -nographic \
  43. #-net nic,model=rtl8139 mnt/hdd268mb.img \
  44. #-net user,hostfwd=tcp::5555-:23 \
  45. #-net dump,file=/tmp/vm0.pcap \
  46. #-kernel mnt/hdd/kernel $*
  47. #
  48. #sudo qemu-system-x86_64 -s -cpu phenom -smp 8 -m 6024 -nographic -net nic,model=rtl8139 mnt/hdd268mb.img -netdev user,id=mynet0 -kernel mnt/hdd/kernel $*
  49. #sudo qemu-system-x86_64 -s -cpu phenom -smp 8 -m 6024 -nographic -net nic,model=rtl8139 mnt/hdd268mb.img -netdev user,id=mynet0,net=192.168.76.0/24,dhcpstart=192.168.76.9 -kernel mnt/hdd/kernel $*
  50. #