I use vmware and qemu

  • Mr. Camel999
    link
    71 month ago

    I use virt-manager, aka Virtual Machine Manager. Using this specifically because of the winapps for Linux repo has instructions on how to get Windows apps to run through the VM to be integrated in a Linux environment.

    • Read bioOP
      link
      fedilink
      English
      21 month ago

      might try that tbh am gonna run razer software or apps that dont work on linux at all and for games am gonna use my windows ssd

    • @[email protected]
      link
      fedilink
      English
      21 month ago

      How “scriptable” is virt-manager?

      My biggest issue with VirtualBox is that I have to install OSes as if I’m actually installing them. There aren’t any images (at least that I’m aware of) that can run with a command, like deploying an EC2.

      • Skull giver
        link
        fedilink
        7
        edit-2
        1 month ago

        virt-manager is a frontend for a bunch of virtualisation systems, but usually it’s configured for qemu+kvm+libvirt.

        Libvirt is a dedicated API to managing virtual machines. It’s probably most versatile when launching new VMs on it by using the libvirt XML definitions, but there’s an API you can use if you want more low level access, and optional command line tooling as well.

        Something like virt-install --name=lemmyvm --vcpus=1 --memory=2048 --cdrom=/tmp/debian-netinst.iso --disk size=50 --os-variant=debian12 should automatically install a Debian 12 VM (from a downloaded ISO) through the automated setup process. It’s been a while since I used that, though, so you may need an extra step or two to get the setup to autocomplete today. I think cloudinit is how you auto setup Linux distros these days?

      • Alex
        link
        fedilink
        31 month ago

        Virt-manager isn’t super scriptable but the underlying libvirt can be controlled by virsh which is a shell interface to libvirt. You can use both at the same time, e.g. start and stop via virsh and access to gui container via virt-manager/virt-viewer.

      • Possibly linux
        link
        fedilink
        English
        2
        edit-2
        1 month ago

        Virtual manager isn’t scriptable at all as it is just a GUI for libvirt. You are probably looking for qemu or virsh (libvirt)