From 0792f66d267ddf2f3f0c35f74c7c02166e9dd4c5 Mon Sep 17 00:00:00 2001 From: Aiden Gerbrandt Date: Sat, 7 Mar 2026 13:31:30 -0600 Subject: [PATCH] added virt-manager --- VirtualMachineManager.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 VirtualMachineManager.md diff --git a/VirtualMachineManager.md b/VirtualMachineManager.md new file mode 100644 index 0000000..0a2fe29 --- /dev/null +++ b/VirtualMachineManager.md @@ -0,0 +1,32 @@ +# Virtual Machine Manager +Virtual Machine Manager is a Hypervisor that is generally capable of everything [VirtualBox](VirtualBox.md) or [VMWare Workstation](VMWareWorkstation.md) is, but with the benefit of built in support from the linux kernel. So no weird install processes involving kernel modules and the like. + +## Install +If your distribution has a Graphical software manager/store, you can likely search for **Virtual Machine Manager** and install it there. + +If not, or you wish to install it via command-line, see below: + +### Flatpak (universal) +If you wish to install through flatpak ensure flatpak is setup, see [Flatpak](Flatpak.md) for details if not. +```sh +flatpak install flathub org.virt_manager.virt-manager +``` + +### Arch-based +```sh +sudo pacman -S virt-manager +``` + +### Debian/Mint/Ubuntu +```sh +sudo apt update +sudo apt install virt-manager +``` + +### Fedora +```sh +sudo dnf install virt-manager +``` + +## Usage +To be completed.