forked from cheat/cheatsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
91 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
tags: [ virtualization ] | ||
--- | ||
# Run a specific vm: | ||
quickemu --vm <path/to/vm.conf> | ||
|
||
# Run a specific vm with a spice display: | ||
quickemu --vm <path/to/vm.conf> --display spice | ||
|
||
# Run a specific vm with a braille terminal display - Version > 3.11 and working brltty required: | ||
quickemu --vm <path/to/vm.conf> --accessible braille --display sdl | ||
# or: | ||
quickemu --vm <path/to/vm.conf> --acc brl --display sdl | ||
|
||
## All the optional parameters: | ||
|
||
|
||
--braille : Enable braille support. Requires SDL. | ||
--delete-disk : Delete the disk image and EFI variables | ||
--delete-vm : Delete the entire VM and it's configuration | ||
--display : Select display backend. 'sdl' (default), 'gtk', 'none', 'spice' or 'spice-app' | ||
--fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit) | ||
--ignore-msrs-always : Configure KVM to always ignore unhandled machine-specific registers | ||
--screen <screen> : Use specified screen to determine the window size. | ||
--shortcut : Create a desktop shortcut | ||
--snapshot apply <tag> : Apply/restore a snapshot. | ||
--snapshot create <tag> : Create a snapshot. | ||
--snapshot delete <tag> : Delete a snapshot. | ||
--snapshot info : Show disk/snapshot info. | ||
--status-quo : Do not commit any changes to disk/snapshot. | ||
--viewer <viewer> : Choose an alternative viewer. @Options: 'spicy' (default), 'remote-viewer', 'none' | ||
--ssh-port <port> : Set ssh-port manually | ||
--spice-port <port> : Set spice-port manually | ||
--public-dir <path> : expose share directory. @Options: '' (default: xdg-user-dir PUBLICSHARE), '<directory>', 'none' | ||
--monitor <type> : Set monitor connection type. @Options: 'socket' (default), 'telnet', 'none' | ||
--monitor-telnet-host <ip/host> : Set telnet host for monitor. (default: 'localhost') | ||
--monitor-telnet-port <port> : Set telnet port for monitor. (default: '4440') | ||
--monitor-cmd <cmd> : Send command to monitor if available. (Example: system_powerdown) | ||
--serial <type> : Set serial connection type. @Options: 'socket' (default), 'telnet', 'none' | ||
--serial-telnet-host <ip/host> : Set telnet host for serial. (default: 'localhost') | ||
--serial-telnet-port <port> : Set telnet port for serial. (default: '6660') | ||
--keyboard <type> : Set keyboard. @Options: 'usb' (default), 'ps2', 'virtio' | ||
--keyboard_layout <layout> : Set keyboard layout. | ||
--mouse <type> : Set mouse. @Options: 'tablet' (default), 'ps2', 'usb', 'virtio' | ||
--usb-controller <type> : Set usb-controller. @Options: 'ehci' (default), 'xhci', 'none' | ||
--extra_args <arguments> : Pass additional arguments to qemu | ||
--version : Print version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
tags: [ virtualization ] | ||
--- | ||
# Download a release image and prepare a Qemu vm config: | ||
quickget <OS> <Release> [<Edition>|<Type>|<DM Option>|<Windows Language>] | ||
|
||
# Print list of supported Releases and Editions for <OS>: | ||
quickget <OS> | ||
|
||
# Download an OS Release image and prepare a Qemu vm config - if Edition is not specified the default will be used: | ||
quickget <OS> <Release> | ||
|
||
# Print a csv list of all supported OS variants | ||
quickget list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters