33 lines
944 B
Markdown
33 lines
944 B
Markdown
# 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.
|