11 lines
362 B
Bash
11 lines
362 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ "`ps aux|grep vde_switch|head -n-1`" == "" ]]; then
|
||
|
vde_switch -daemon
|
||
|
fi
|
||
|
if [[ "`ps aux|grep vde_pcap|grep root`" == "" ]]; then
|
||
|
(sudo /usr/bin/vde_pcapplug eth0 &>/dev/null)&
|
||
|
fi
|
||
|
cd ~/vm/qemu
|
||
|
(qemu-system-x86_64 -m 128 -usb -usbdevice host:0000:5678 -usbdevice host:067b:2303 -net nic,macaddr=52:54:00:12:34:57 -net vde xp0 &>/dev/null)&
|