Tag: 57b9a3674ddb5f341827e788
All the articles with the tag "57b9a3674ddb5f341827e788".
QEMU vs KVM vs Libvirt
Updated: at 01:39 PMType 1 & Type 2 Hypervisor Type 1 : Berjalan langsung diatas hardware yang mendasari host tersebut. Disebut juga "bare-meta" hypervisor. Yang berarti ia bisa berjalan langsung diatas hardware tanpa harus meload underlying os terlebih dahulu. Contoh:...
Troubleshooting ESXi Installation on QEMU/KVM: Overcoming Network Adapter and Disk Recognition Challenges
Published: at 02:13 PMWhen attempting to install ESXi on QEMU/KVM, I encountered several issues. Firstly, the ESXi installer failed to detect the network adapter/NIC. Secondly, no disks were detected. After researching online, I decided to write this article to help other...
KVM Overlay Network with VXLAN
Published: at 07:30 PMIntroduction The VXLAN (Virtual eXtensible Local Area Networking) protocol is a tunnelling protocol designed to solve the problem of limited VLAN IDs (4096) in IEEE 802.1q. With VXLAN the size of the identifier is expanded to 24 bits (16777216). VXLA...
Reset KVM Guest Password
Published: at 06:20 AM1. Install libguestfs-tools apt install -y libguestfs-tools dnf install -y libguestfs-tools 2. Shutdown vm virsh shutdown vm-1 3. Use virt-customize virt-customize -a /path/to/disk-root.qcow2 --root-password password:password123 4. Try to access v...