qvm-create.rst 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .. program:: qvm-create
  2. :program:`qvm-create` -- create new domain
  3. ==========================================
  4. Synopsis
  5. --------
  6. :command:`qvm-create` [-h] [--verbose] [--quiet] [--force-root] [--class *CLS*] [--property *NAME*=*VALUE*] [--pool *POOL_NAME:VOLUME_NAME*] [--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:: --verbose, -v
  12. Increase verbosity.
  13. .. option:: --quiet, -q
  14. Decrease verbosity.
  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
  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:: -P POOL
  34. Pool to use for the new domain. All volumes besides snapshots volumes are
  35. imported in to the specified POOL. ~HIS IS WHAT YOU WANT TO USE NORMALLY.
  36. .. option:: --pool=POOL:VOLUME, -p POOL:VOLUME
  37. Specify the pool to use for the specific volume
  38. Options for internal use
  39. ------------------------
  40. Do not use if you don't know, what you are doing.
  41. .. option:: --no-root
  42. Do not create :file:`root.img`. This option is mutually exclusive with
  43. :option:`--root-copy-from` and :option:`--root-move-from`.
  44. Authors
  45. -------
  46. | Joanna Rutkowska <joanna at invisiblethingslab dot com>
  47. | Rafal Wojtczuk <rafal at invisiblethingslab dot com>
  48. | Marek Marczykowski <marmarek at invisiblethingslab dot com>
  49. | Wojtek Porczyk <woju at invisiblethingslab dot com>
  50. | Bahtiar `kalkin-` Gadimov <bahtiar at gadimov dot de>
  51. .. vim: ts=3 sw=3 et tw=80