πŸ› οΈ Title: Oracle VM VirtualBox
🦊️ What's: A libre virtualization software of hardware systems (PCs)
🏑️ https://www.virtualbox.org/
🐣️ https://www.virtualbox.org/browser/vbox/trunk
πŸ”– #Linux #Virtualization
πŸ“¦οΈ #Libre #Arch #RPM #Deb
πŸ“•οΈ https://lebottinlinux.vps.a-lec.org/LO.html

πŸ₯οΈ Update:7.2.0
βš—οΈ Major release(Stable)🍎️
πŸ“ŒοΈ Changes: https://www.virtualbox.org/wiki/Changelog
🦣️ From: https://masto.ai/@phoronix/115028160993257866

πŸ•―οΈhttps://www.youtube.com/embed/nvdnQX9UkMY
πŸ•―οΈhttps://www.youtube.com/embed/sB_5fqiysi4
πŸ•―οΈ[fr] https://www.youtube.com/embed/SUVZg4hlvpI

Oracle VirtualBox

VirtualBox 7.2 arrives with ARM Windows virtualization, Linux video acceleration, open-source NVMe controller, GUI changes, and broad host/guest fixes.
https://linuxiac.com/virtualbox-7-2-lands-with-arm-windows-virtualization/

#virtualbox #Virtualization #opensource

This is how I create and manage VMs on Linux distros

KVM can turn even the most boring Linux system into a virtualization battlestation

XDA

Virshle keeps virtual machines configuration simple.

Add your #ssh key to a #vm.

Write a user-data.toml file and pass it to the VM upon startup!

v vm start --id <vm_id> --user_data <user_data_filepath>

Then ssh into the machine 😎

ssh vm/<vm_name>

(an finally provision it with wathever tool you like)

https://github.com/pipelight/virshle
#linux #kvm #virtualization #nixos

Just wrote this quickie shell script to create and launch Debian13 KVM VMs. Just provide the hostname. Sharing in case someone else can use this.

The template is the debian13 nocloud image that I expanded to 20 GB. https://cloud.debian.org/images/cloud/trixie/latest/debian-13-nocloud-amd64.qcow2

==========

$ cat create_debian13_vm.sh
#!/bin/bash
if [ -z "$1" ]; then
echo "Error: No argument supplied."
echo "Usage: $0 <vm_name>"
exit 1
fi

echo "Creating root drive from template... (sudo password required)"
sudo cp /var/lib/libvirt/images/debian13-20GB-template.qcow2 /var/lib/libvirt/images/$1.qcow2

echo "Customizing root drive with root password, hostname, updates, dennis user, ssh, sudo..."
sudo virt-customize --add "/var/lib/libvirt/images/$1.qcow2" --root-password password:root --hostname "$1" --firstboot-command 'apt update && apt upgrade -y && apt install openssh-server -y && useradd -m -p "" dennis && chage -d 0 dennis && sudo usermod -aG sudo dennis'

echo "Installing and starting VM..."
sudo virt-install --name $1 --ram 4096 --vcpus 2 --disk path=/var/lib/libvirt/images/$1.qcow2,format=qcow2,bus=virtio --import --os-variant debian13 --network bridge=br0 --graphics spice --noautoconsole

virsh --connect qemu:///system list --all

#virtualization #KVM #QEMU #Debian #Linux

Proxmox for the HomeLab

Proxmox VE is a powerful, open-source virtualization platform that’s perfect for building flexible, scalable home lab environments.

Victor Nava

@rafa I just pushed a fix to #sss where we add the (forgotten) %base-user-accounts. This will fix #qemu virtual machines, among other things:

(users (append (get-setting 'users) %base-user-accounts))

Make sure to use v3.3.18 onwards :)

https://codeberg.org/jjba23/sss

#guix #gnu #linux #virtualization #hyprland

How to build and run Unikernel with Nanos: compact, single-application Virtual Machines, boosting Speed, Efficiency, and Security #Virtualization https://tallysolutions.com/technology/introduction-to-unikernel-2/
Unikernel Guide: Build & Deploy Lightweight, Secure Apps

Learn about unikernels, their advantages, and how to build and deploy lightweight, secure applications with this comprehensive introduction.

Tally Solutions