From: Silvio Rhatto Date: Sat, 7 Oct 2017 23:41:49 +0000 (-0300) Subject: Adds nic_model config X-Git-Tag: 0.1.0~371 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3f6b95913089a72dd1afe98a6d5fed9ea4e7e4de;p=kvmx.git Adds nic_model config --- diff --git a/kvmx b/kvmx index a17b7d2..8715e95 100755 --- a/kvmx +++ b/kvmx @@ -357,6 +357,10 @@ function kvmx_up { drive_interface="virtio" fi + if [ -z "$nic_model" ]; then + nic_model="virtio" + fi + # Run virtual machine # See https://en.wikipedia.org/wiki/Nohup#Overcoming_hanging nohup kvm -m $memory -name $VM -drive file=$image,if=$drive_interface $graphics $shared \ @@ -365,7 +369,7 @@ function kvmx_up { -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 \ -chardev spicevmc,id=spicechannel0,name=vdagent \ -smp $smp -soundhw ac97 -cpu host -balloon virtio \ - -net nic,model=virtio \ + -net nic,model=$nic_model \ -net user,hostfwd=tcp:127.0.0.1:$SSH-:22,hostfwd=udp:127.0.0.1:$XDMCP_PORT-:177$hostfwd $qemu_opts &> $LOGFILE < /dev/null & PID="$!" @@ -532,7 +536,7 @@ function kvmx_ssh { fi SSH="`cat $SSHFILE`" - $SSH_COMMAND -p $SSH 127.0.0.1 $* + TERM=xterm $SSH_COMMAND -p $SSH 127.0.0.1 $* } # Suspend the virtual machine diff --git a/kvmxfile b/kvmxfile index c8bc80d..3171049 100644 --- a/kvmxfile +++ b/kvmxfile @@ -106,3 +106,6 @@ bootloader="grub" # Drive interface # Needed by some systems like NetBSD and FreeBSD #drive_interface="ide" + +# See http://www.reactos.org/wiki/QEMU#Setting_up_network +#nic_model="ne2k_pci"