qvm-create.rst 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .. program:: qvm-create
  2. :program:`qvm-create` -- create new domain
  3. ==========================================
  4. Synopsis
  5. --------
  6. :command:`qvm-create` [-h] [--qubesxml *XMLFILE*] [--force-root] [--class *CLS*] [--property *NAME*=*VALUE*] [--template *VALUE*] [--label *VALUE*] [--root-copy-from *FILENAME* | --root-move-from *FILENAME*] *VMNAME*
  7. Options
  8. -------
  9. .. option:: --help, -h
  10. show help message and exit
  11. .. option:: --qubesxml=XMLFILE
  12. Qubes OS store file
  13. .. option:: --force-root
  14. Force to run as root.
  15. .. option:: --class, -C
  16. The new domain class name (default: **AppVM** for
  17. :py:class:`qubes.vm.appvm.AppVM`).
  18. .. option:: --prop=NAME=VALUE, --property=NAME=VALUE, -p NAME=VALUE
  19. Set domain's property, like "internal", "memory" or "vcpus". Any property may
  20. be set this way, even "qid".
  21. .. option:: --template=VALUE, -t VALUE
  22. Specify the TemplateVM to use, when applicable. This is an alias for
  23. ``--property template=VALUE``.
  24. .. option:: --label=VALUE, -l VALUE
  25. Specify the label to use for the new domain (e.g. red, yellow, green, ...).
  26. This in an alias for ``--property label=VALUE``.
  27. .. option:: --root-copy-from=FILENAME, -r FILENAME
  28. Use provided :file:`root.img` instead of default/empty one (file will be
  29. *copied*). This option is mutually exclusive with :option:`--root-move-from`.
  30. .. option:: --root-move-from=FILENAME, -R FILENAME
  31. Use provided :file:`root.img` instead of default/empty one (file will be
  32. *moved*). This option is mutually exclusive with :option:`--root-copy-from`.
  33. .. option:: --pool=POOL_NAME:VOLUME_NAME, -P POOL_NAME:VOLUME_NAME
  34. Specify the pool to use for a volume
  35. Options for internal use
  36. ------------------------
  37. Do not use if you don't know, what you are doing.
  38. .. option:: --no-root
  39. Do not create :file:`root.img`. This option is mutually exclusive with
  40. :option:`--root-copy-from` and :option:`--root-move-from`.
  41. Authors
  42. -------
  43. | Joanna Rutkowska <joanna at invisiblethingslab dot com>
  44. | Rafal Wojtczuk <rafal at invisiblethingslab dot com>
  45. | Marek Marczykowski <marmarek at invisiblethingslab dot com>
  46. | Wojtek Porczyk <woju at invisiblethingslab dot com>
  47. | Bahtiar `kalkin-` Gadimov <bahtiar at gadimov dot de>
  48. .. vim: ts=3 sw=3 et tw=80