this post was submitted on 20 Oct 2023
28 points (96.7% liked)

Linux

45621 readers
1571 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I used Virtualbox first, switched to GNOME Boxes, then to Virt-manager as it was said to be better.

But in the end, at least on my Laptop, it sucks extremely. I have no OpenGL and extreme lag. Saw a Video about setting up QEMU, followed instructions and the result was very fast, but the viewer was not good.

I am using my existing virt-manager images, read them and display as a kdialog. There I choose it, the choice gets piped into the qemu command. Afterwards the display opens.

Either I have spice working but no OpenGL, or I have VNC and OpenGL but its very slow anyways.

Fedora KDE (Kinoite), Amd graphics card laptop

Edit: some more details.

I want a fast, wayland-native client. Some AI told me spice-gtk is the only one there, which would be not that nice on KDE as it would pull all the GTK dependencies.

Can you run all that stuff in a Podman container? I would just use a Fedora39 Distrobox then.

I used this script before:

#!/bin/bash

# Define the directory where qcow2 images are stored
IMAGE_DIR="/var/lib/libvirt/images/"

# Get a list of qcow2 images in the directory
IMAGE_LIST=$(pkexec sudo ls "$IMAGE_DIR" | grep -E '\.qcow2$')

# Create an array for the menu items
menu_items=()

# Populate the array with tag-item pairs
for image in ${IMAGE_LIST[@]}; do
    menu_items+=("$image" "${image%.qcow2}")
done

# Use kdialog to display a menu and get the selected image
selected_image=$(kdialog --menu "Select a qcow2 image:" "${menu_items[@]}" --title "QEMU Launcher")

# Check if the user selected an image
if [ -n "$selected_image" ]; then
    # QEMU with Virt-Viewer
    pkexec sudo qemu-system-x86_64 -enable-kvm -cpu host -smp 4 -m 8192 -device virtio-gpu-gl  -display spice-app,gl=on -drive file=${IMAGE_DIR}${selected_image},format=qcow2


else
    # User canceled or closed the dialog
    echo "Operation canceled by user."
fi

# Use remote-viewer with title
virt-viewer spice+unix:///tmp/.RTN4C2/spice.sock --title "QEMU - ${selected_image%.qcow2}"
# or this viewer?
# remote-viewer spice://localhost:5900 --title "QEMU - ${selected_image%.qcow2}"
# or spice-gtk?
you are viewing a single comment's thread
view the rest of the comments