Changes To Concepts
Not logged in

Initial version of "Concepts"
















































1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Concepts
========

Use **vws** script.
-------------------

Although there is **start** script in the directory of virtual machine, which is theoretically can be used to start machine without **vws** script, most operations witb virtual workstations should be done via **vws**.

You can edit **start** script direcrtly and add options **vws** doesn't know about yet, but it should be done with care - **vws** might parse and edit this script. We would take as much care as we can to preserve user modifications.

There are also things in the **start** script which should be kept intact or **vws** would be unable to perform some operations - such as attach cdrom on start.

Note that vws start command is able to pass arbitrary qemu optyions.

If you want to send commands to qemu monitor, preferrable way to do so is 

```
vws monitor
```

command. It interacts nicely with other qemu commands, so you can be sure that if you use some **vws** command while monitor is open, it would not break things.

Personal and shared VMs
-----------------------

**vws** supports personal and shared VMs. By default, **vws create** creates personal vm in the ~/VWs. If you want to create shared VM, use **--shared** option.

~/VWs may be symlink to another partition where there is enough space for virtual machines.

If you want to share already created VM, just move it to shared VMs directory, as specified in /etc/vws.conf and chgrp it to vm_group (as specified in the same file). You should be able to do so without superuser rights, because shared VM directory should be writable to vm_group (if vws is properly set up) and you must be member of this group to use kvm at all.

VMs are created group writable anyway, both shared and personal. It does no harm to have personal VMs group-writable, because modern Linuxes have personal group for  each user.

Autostart VMs
-------------

Sometimes it is desirable that some VMs start upon system bootup. In **vws** autostart VMs are considered shared.

/etc/vws.conf lists two directories for shaed vms 
SharedVMs and AutostartVMs. VMs in first directory should be started explicitely one by one using **vws start** command.

VMs and second one are started at once by **vws autostart**.

Note that there also is **vws shutdown** command which tries to stop any running VM it finds - shared or personal, autostarted or not.