Sure! Here's the translation of the installation and uninstallation steps for QEMU/KVM in English:
🟢 I. Install QEMU/KVM
-
Update the system
sudo apt update && sudo apt upgrade -y
-
Install QEMU, KVM, Virt-Manager (GUI Manager)
sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager -y
-
qemu-kvm→ Core virtualization software -
libvirt-daemon-system+libvirt-clients→ Provides KVM services and command-line tools -
bridge-utils→ For virtual machine networking (bridge mode) -
virt-manager→ GUI management tool (similar to VirtualBox)
-
Add the current user to the kvm and libvirt groups (so you can use virtual machines without root)
sudo usermod -aG kvm $USER
sudo usermod -aG libvirt $USER
👉 Then log out and log back in or reboot.
-
Check if KVM is available
egrep -c '(vmx|svm)' /proc/cpuinfo
-
If the output is greater than
0, it means your CPU supports virtualization. -
Check if the KVM kernel module is loaded:
lsmod | grep kvm
If you see kvm_intel or kvm_amd, it means KVM is loaded properly.
-
Start virt-manager
virt-manager
You can now create and manage virtual machines via the GUI 🚀.
🔴 II. Uninstall QEMU/KVM
If you no longer need it, you can completely uninstall:
-
Uninstall related software
sudo apt purge qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager -y
-
Remove remaining dependencies
sudo apt autoremove --purge -y
-
Check and remove user groups (optional)
sudo gpasswd -d $USER kvm
sudo gpasswd -d $USER libvirt
⚠️ Tips
-
QEMU/KVM offers performance close to native and is ideal for running virtual machines on your Parrot as the main system.
-
If you ever want to run Windows virtual machines to support applications like QQ, WeChat, or Office, KVM will be more stable than VirtualBox.
🧰Cyberwarfarer
⮕ https://t.me/+BgYSOQZOW-Q3MTA1
🌍 Dwk hacker
⮕ https://t.me/+TmGi51DXkYyBfx6C






0 Comments