1234567891011121314151617181920212223242526272829303132333435 |
- trap : 2
- $HARVEY/util/ufs -root=$HARVEY &
- ufspid=$!
- sudo qemu-system-x86_64 -s -cpu Opteron_G1 -smp 1 -m 2048 \
- -enable-kvm \
- -serial stdio \
- --machine pc \
- -net nic,model=rtl8139 \
- -net user,hostfwd=tcp::5555-:1522 \
- -kernel 9k8cpu.32bit $*
- kill $ufspid
- wait
- # -nographic \
- #-S -gdb tcp::1234 \
- # -nographic \
- #-kernel mnt/hdd/kernel $*
- # if you need the dump.
- #-net dump,file=/tmp/vm0.pcap \
- #sudo qemu-system-x86_64 -s -cpu phenom -smp 8 -m 4096 -nographic \
- #-net nic,model=rtl8139 mnt/hdd268mb.img \
- #-net user,hostfwd=tcp::5555-:23 \
- #-net dump,file=/tmp/vm0.pcap \
- #-kernel mnt/hdd/kernel $*
- #
- #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 $*
- #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 $*
- #
|