jummama

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by jummama

  1. Glad to hear you seem to have success! I was able to play for about an hour with no issues, aside from the somewhat low frame rate from my old GPU, and some control issues from trying to drive the horse like a GTA car
  2. I saw some reference to fast start caching some of the values, so it might help to turn off fast start in Windows. The Unraid terminal should be okay for patching the binary
  3. I found an easier solution, and have so far been able to at least get into the settings screen on my Windows VM! In that same Reddit thread, Philosopher_Valuable suggested using sed to modify a qemu binary in order to patch the ACPI tables: Based on this idea, I copied /usr/bin/qemu-system-x86_64 into my Manjaro system, and patched it as above. Then I copied it back into the Unraid system as /usr/bin/qemu-system-x86_64.rdr2, and moved some stuff around: cd /usr/bin/ mv qemu-system-x86_64 qemu-system-x86_64.stock #Keep the original around, just in case chmod 755 qemu-system-x86_64.rdr2 #Make sure the patched one is properly executable ln -s qemu-system-x86_64.rdr2 qemu-system-x86_64 #Create a symbolic link so that Unraid will launch the patched version This was done with a couple of other VMs running, no problems there. Afterwards, I did still have to do the XML edits described by dev-null-s in order to deal with the SMBIOS values, but now it seems to work. Off to play a bit, I'll report back later!
  4. Hi, new on the forums, and was just gifted a copy of this on Steam. It starts up as far as the main menu, but then if I attempt to hit settings, or launch the game in single player or multiplayer, I get a crash to desktop. I've tried all the other methods I've found with no luck so far: DepotDownloader to downgrade to before the Naturalist update This no longer works, as the Rockstar Launcher refuses to launch the older version. Downgrading the launcher doesn't work either, because it either refuses to work if disconnected, or auto-updates a soon as it starts up. Running in Linux via Proton After a few attempts, I managed to get the game to start up as far as the main menu under Proton 5.13. Unfortunately, the symptoms are the same So, this leaves me at the point of trying to patch QEMU. I'm fairly savvy, but I'm not sure where to begin on modifying components in Unraid. I've noticed that there appear to be some Docker images that contain QEMU, I'm wondering if that might be a usable way to package up a modified QEMU and launch it on my Unraid box for the Windows VM without affecting the built in system version, and risking breaking other stuff.