xref: /kvmtool/include/common-cmds.h (revision 292925a4e4b08c455fbf02639cbe062ead712425)
1 struct cmdname_help
2 {
3     char name[16];
4     char help[80];
5 };
6 
7 static struct cmdname_help common_cmds[] = {
8   {"run", "Start the virtual machine"},
9   {"setup", "Setup a new virtual machine"},
10   {"pause", "Pause the virtual machine"},
11   {"resume", "Resume the virtual machine"},
12   {"version", "Print the version of the kernel tree kvm tools"},
13   {"list", "Print a list of running instances on the host."},
14   {"debug", "Print debug information from a running instance"},
15   {"balloon", "Inflate or deflate the virtio balloon"},
16   {"stop", "Stop a running instance"},
17   {"stat", "Print statistics about a running instance"},
18   {"sandbox", "Run a command in a sandboxed guest"},
19 };
20