qvm-run – Run a command in a specified VM¶
Synopsis¶
Execution mode¶
When executing a command, it is recommended to pass the arguments directly to qvm-run, for example:
qvm-run --pass-io personal -- ls -a
(Note the – used to ensure that -a is not treated as option of qvm-run).
If no arguments are specified, COMMAND will be interpreted as a shell command, for example:
qvm-run --pass-io personal 'ls -a'
This is more flexible but also less safe, because care must be taken to quote
or escape special characters. Use the --no-shell
option to ensure
that a command without arguments is not interpreted as a shell command.
Options¶
- --help, -h¶
Show the help message and exit.
- --verbose, -v¶
Increase verbosity.
- --quiet, -q¶
Decrease verbosity.
- --all¶
Run the command on all running qubes. You can use
--exclude
to limit the qubes set. Command is never run on dom0.
- --dispvm [BASE_APPVM]¶
Run the command fresh DisposableVM created out of BASE_APPVM. This option is mutually exclusive with VMNAME, –all and –exclude.
- --user=USER, -u USER¶
Run command in a qube as USER.
- --auto, --autostart, -a¶
Ignored. Qube is autostarted by default.
- --no-auto, --no-autostart, -n¶
Do not start the qube automatically, fail the operation if not running.
- --pass-io, -p¶
Pass standard input and output to and from the remote program.
- --gui¶
Run the command with GUI forwarding enabled, which is the default. This switch can be used to counter
--no-gui
.
- --service¶
Start RPC service instead of shell command. Specify name of the service in place of COMMAND argument. You can also specify service argument, appending it to the service name after + character.
- --colour-output=COLOUR, --color-output=COLOR¶
Mark the qube output with given ANSI colour (ie. “31” for red). The exact mapping of numbers to colours and styles depends of the particular terminal emulator.
Colouring can be disabled with
--no-colour-output
.
- --colour-stderr=COLOUR, --color-stderr=COLOR¶
Mark the qube stderr with given ANSI colour (ie. “31” for red). The exact mapping of numbers to colours and styles depends of the particular terminal emulator.
Colouring can be disabled with
--no-colour-stderr
.
- --no-colour-output, --no-color-output¶
Disable colouring the stdout.
- --no-colour-stderr, --no-color-stderr¶
Disable colouring the stderr.
- --filter-escape-chars¶
Filter terminal escape sequences (default if output is terminal).
Terminal control characters are a security issue, which in worst case amount to arbitrary command execution. In the simplest case this requires two often found codes: terminal title setting (which puts arbitrary string in the window title) and title repo reporting (which puts that string on the shell’s standard input.
- --no-filter-escape-chars¶
Do not filter terminal escape sequences. This is DANGEROUS when output is a terminal emulator. See
--filter-escape-chars
for explanation.
- --no-shell¶
Treat COMMAND as a command to be executed directly, not passed to a shell. This is default if there are additional arguments to qvm-run.