qvm-create.rst 2.3 KB

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