this post was submitted on 10 Aug 2024
83 points (98.8% liked)

Linux

47317 readers
680 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 use vmware and qemu

you are viewing a single comment's thread
view the rest of the comments
[–] data1701d@startrek.website 21 points 1 month ago (3 children)

Qemu/KVM and Virt Manager. I have three VMs that I pass my GPU to: a Hackintosh, a Windows 10, and and Windows 7.

[–] teawrecks@sopuli.xyz 1 points 1 month ago (1 children)

Do you have two GPUs or do you fully switch to the VM while passed through?

[–] data1701d@startrek.website 1 points 1 month ago (1 children)

I have two GPUs - an RX 550 hooked to the monitors and 580 for VMs. Until recently, once the VM shut down, the 580 was able to return to Linux and be used again via PRIME - no reset bug. It randomly stopped working and I’ve tried to debug it to fix the problem to little avail.

[–] teawrecks@sopuli.xyz 2 points 1 month ago* (last edited 1 month ago) (1 children)

I actually may have seen the same issue recently. Have you tried adding initcall_blacklist=simpledrm_platform_driver_init to your kernel launch params?

[–] data1701d@startrek.website 1 points 1 month ago (1 children)

I’ll have to try that. What I have tried so far is running a different kernel version and making sure my driver blacklists are correct (I found that the GPU shouldn’t ever connect to snd_hda_intel. It briefly eas again, but after fixing it, I still had the problem.).

[–] teawrecks@sopuli.xyz 1 points 1 month ago (1 children)

For me, I have intel integrated + amd discrete. When I tried to set DRI_PRIME to 0 it complained that 0 was invalid, when I set it to 2 it said it had to be less than the number of GPUs detected (2). After digging in I noticed my cards in /dev/dri/by-path were card1 card2 rather than 0 and 1 like everyone online said they should be. Searching for that I found a few threads like this one that mentioned simpledrm was enabled by default in 6.4.8, which apparently broke some kind of enumeration with amd GPUs. I don't really understand why, but setting that param made my cards number correctly, and prime selection works again.

[–] data1701d@startrek.website 1 points 1 month ago (1 children)

Huh. My issue seems different, but I’ll still test that flag to see if it changes anything. My problem looks like the device doesn’t return to host after VM shutdown, possibly because of the reset bug (based on my observation of dmesg), which I hadn’t encountered after about a year of GPU passthrough VM usage.

[–] teawrecks@sopuli.xyz 1 points 1 month ago

Ahh, yeah if it's specifically when coming back from a VM, that sounds different. Maybe the vfio_pci driver isn't getting swapped back to the real one? I barely know how it works, I'm sure you've checked everything.

[–] possiblylinux127@lemmy.zip 1 points 1 month ago

I hope you air gap that Windows 7 VM

[–] eugenia@lemmy.ml 1 points 1 month ago (2 children)

I never found a way to share a Public folder with VirtManager though, I need to move files between host and guest. How would you go about it?

[–] data1701d@startrek.website 2 points 1 month ago (1 children)

I go to the host folder I want to transfer files from and run ‘’’python3 -m http.server’’’. Then (I can’t remove if I use ‘’’ip a’’’ to find the IP address of the host or if I used mDNS), I use the guest web browser to download files.

[–] D_Air1@lemmy.ml 2 points 1 month ago

And here I have just been using samba.

[–] wildbus8979@sh.itjust.works 1 points 1 month ago

Install the quemu guest agent in the VM. For Linux and Windows you'll even be able to drag and drop.