Overview
| Comment: | More or less written command line interface to create vms. Fixed monitor path in the start.template |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e43aa4d9b252d87582143416070ac1b0 |
| User & Date: | vitus on 2015-12-11 15:27:48.890 |
| Other Links: | manifest | tags |
Context
|
2015-12-11
| ||
| 20:21 | Moved create functionality into main vws script check-in: 8f4a02281b user: vitus tags: trunk | |
| 15:27 | More or less written command line interface to create vms. Fixed monitor path in the start.template check-in: e43aa4d9b2 user: vitus tags: trunk | |
|
2015-11-18
| ||
| 14:44 | Implemented list --state. Fixed first start of vm, when no monitor socket exists yet check-in: 33f6d5eeca user: vitus tags: trunk | |
Changes
mkvm became
executable with contents
[c9b2ef6117].
Modified start.template
from [8a854bae9d]
to [f5e7877513].
| ︙ | ︙ | |||
20 21 22 23 24 25 26 |
{qemubinary} -name $NAME {accel} \
-m {memory}
{drive} \
{cdrom}$CDROM \
{net} \
{usb} \
{sound} \
| | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
{qemubinary} -name $NAME {accel} \
-m {memory}
{drive} \
{cdrom}$CDROM \
{net} \
{usb} \
{sound} \
-chardev socket,server,nowait,path=monitor,id=monitor \
-mon chardev=monitor,mode=readline \
-vga qxl \
-spice port=$SPICE_PORT,$SPICE_AUTH \
-device virtio-serial -chardev spicevmc,id=vdagent,name=vdagent \
-device virtserialport,chardev=vdagent,name=com.redhat.spice.0 \
-device ich9-usb-ehci1,id=usb \
-device ich9-usb-uhci1,masterbus=usb.0,firstport=0,multifunction=on \
|
| ︙ | ︙ |
Added vwscreate version [fd646c2a4e].