Reddit Linux_Gaming

Subscribe to Reddit Linux_Gaming feed
A subreddit for discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck).newest submissions : linux_gaming
Updated: 2 min 42 sec ago

Need help when trying to add a Steam Library on my 2nd hdd

28 Sep 2025 - 5:30pm

Short story, I'm trying to make Steam library on my secondary harddrive which I got mounted in /mnt/hdd1, but even with the console Steam fails to add my library folder on /mnt/hdd1/steamapps. After searching for a while, people said that modifying /etc/fstab adding exec seemed to fix this issue for them, but jokes on me, when I try to mount the drive using the fstab, my line automatically (and magically) changes to noexec, no matter what I do (I literally tried everything at this point). Could anyone please give me one way to force the exec when mounting the drive? thx :)

PD: If anyone has got a fix for this I would kiss them on the lips

submitted by /u/mogmojitosu
[link] [comments]

Best ubuntu-based distro for NVIDIA gpu

28 Sep 2025 - 4:16pm

Context: I am running ubuntu 24 lts with a NVIDIA gpu (3060 ti) and multiple monitors with different resolutions and refresh rates. I am currently on x11 and its just not a great experience. even just basic visuals are horrible when both monitors are on (for gaming I disable the second monitor, but even then GSYNC doesn't work). I tried switching to wayland with KDE plasma desktop and it worked beautifully at first, but then the whole system crashed and i couldnt get it to work even after hours of debugging (even Ubuntu on wayland just doesnt work for me).

Thing is, I want it to be ubuntu-based distro for work purposes (the actual GUI can be similar or different to GNOME; i dont care about that).

So I want a ubuntu-based distro that does well with NVIDIA GPUs and stable drivers that doesnt have issues with x11 or wayland or whatever the distro uses, and for the love of god I want to be able to work on both monitors without getting an aneurysm (not asking to be able to game with both monitors on, thats probably a pipe dream lol). I'd appreciate any insight.

submitted by /u/Fluid-Purpose7958
[link] [comments]

Errors when booting BC-250, it gets stuck

28 Sep 2025 - 4:00pm

Hey everyone, does anyone know what the hell is going on with my BC-250? Whenever I try to boot it, it freezes, just like in the video (although sometimes it also displays a kernel panic or freezes a little earlier or later). The only way to boot it is by setting acpi=off in grub (so I assume it's an ACPI table error, or so chatgpt told me at least), but this way I don't get 3D acceleration or mesa drivers.

I've already tried flashing the BIOS or using different distros, and the same thing happens on all of them. I managed to patch some ACPI tables; this solution lasted a day, and then other errors occurred, and it froze like before. Does anyone know how to fix this?

submitted by /u/elgordobondiola127
[link] [comments]

What's the best Linux for Game editors? ( Unity3D /Unreal engine )

28 Sep 2025 - 3:56pm

Greetings folks...

...Asking for someone I know :

"whats the best Linux OS for game editors? mainly Unity3D and Unreal engine, and also if depending on versions make a difference? like UE4 vs UE5? and to be aware of any other recommended software to install? Besides cons and pros are welcome!".

Thanks in advance for your feedback! :)

submitted by /u/Slow_cpu
[link] [comments]

Reason for 3060ti stuck at lower power mode

28 Sep 2025 - 3:48pm

I have 3060ti that looks like it is stuck at ~70W power, e.g. in CP2077 I can't achieve more than 25 fps in 1080p, with DLSS, setting everything to low/med.

I'm using driver 570.153.02.

Tried nvidia-smi, but max power is set to 200W there.

In -q I see: Fan Speed : 53 % Performance State : P2

while running CP2077 benchmark (~25 FPS).

What could be the issue? Is that driver version somehow bad?

What can I do to debug the issue? Or should upgrade to 575 or downgrade?

submitted by /u/krzyk
[link] [comments]

Is it just me that hyprland runs pretty bad?

28 Sep 2025 - 3:43pm

I've tested playing in KDE Plasma and Hyprland, and even though Hyprland displays 70 fps (which is more than my 60hz laptop) the gameplay feels pretty laggy, both the gameplay and the sound is laggy, I don't understand why. I've tried disabling hyprland animations, vfr and vrr tried both activated and disabled an nothing.
I have an integrated graphics card (Intel Iris XE), I know it's not good, but in KDE Plasma it runs smooth.

submitted by /u/Kiiwyy
[link] [comments]

How to Run Slune (2006 Python Racing Game) on Modern Fedora Using Podman

28 Sep 2025 - 3:10pm
What is Slune?

Slune is an open-source 3D racing game written in Python from 2006. Think of it as an adventure racing game meets Python - it's a piece of gaming history from when people were experimenting with Python for 3D games using the Soya3D engine. The catch? It requires Python 2.7 and a bunch of deprecated libraries that would be a nightmare to install on a modern system.

The Problem Slune needs:
  • Python 2.7 (EOL since 2020)
  • Soya3D engine (abandoned ~2010)
  • SDL 1.2, Cal3D, OpenAL, and other ancient libraries
  • Cython/Pyrex for compilation

Installing these on Fedora 42 would contaminate your system with outdated packages (if you could even find them).

The Solution: Containerization with Podman

Here's a clean way to run Slune without messing up your system.

Prerequisites
  • Fedora with Podman installed (comes by default)
  • Working X11/Wayland display
  • ~1GB disk space
Step 1: Create the Build Environment # Create project directory mkdir ~/slune-container cd ~/slune-container # Create Dockerfile cat > Dockerfile << 'EOF' FROM ubuntu:18.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y \ python2.7 \ python2.7-dev \ python-pip \ python-setuptools \ cython \ libgl1-mesa-dev \ libglu1-mesa-dev \ libglew-dev \ libsdl1.2-dev \ libsdl-image1.2-dev \ libsdl-mixer1.2-dev \ libopenal-dev \ libalut-dev \ libcal3d12v5 \ libcal3d12-dev \ libfreetype6-dev \ libode-dev \ build-essential \ pkg-config \ && rm -rf /var/lib/apt/lists/* RUN pip2 install --upgrade pip setuptools wheel RUN pip2 install "Cython<3.0" # Install Soya with error handling RUN pip2 install soya || echo "Warning: Soya installation had issues" # Install the game RUN pip2 install py2play slune WORKDIR /workspace CMD ["/bin/bash"] EOF Step 2: Build the Container # Build the image (takes ~5 minutes) podman build -t slune-env . Step 3: Create Workspace and Run # Create workspace for game files mkdir -p ~/slune-workspace # Run container with display and audio passthrough podman run -it --name slune-dev \ --device /dev/dri \ --device /dev/snd \ --env DISPLAY=$DISPLAY \ --env PULSE_SERVER=/run/user/$(id -u)/pulse/native \ --volume /tmp/.X11-unix:/tmp/.X11-unix:rw \ --volume /run/user/$(id -u)/pulse:/run/user/$(id -u)/pulse \ --volume ~/slune-workspace:/workspace \ --security-opt label=disable \ --group-add audio \ slune-env Step 4: Play the Game!

Inside the container:

slune For Future Gaming Sessions # Just restart the existing container podman start -ai slune-dev # Then run the game slune

Happy retro gaming! 🏁🐍

submitted by /u/Cheetah3051
[link] [comments]

Error in Prism Launcher when using zink

28 Sep 2025 - 3:02pm

[09:59:59] [main/INFO] [EARLYDISPLAY/]: Tentando a versão GL 3.2

[09:59:59] [main/ERROR] [EARLYDISPLAY/]: Falha ao encontrar qualquer perfil GLFW válido. Tentando 4.6: Erro GLFW: [0x10009]GLX: Falha ao encontrar um GLXFBConfig adequado

DRI3 não disponível

DRI3 não disponível

DRI3 não disponível

DRI3 não disponível

DRI3 não disponível

DRI3 não disponível

DRI3 não disponível

Exceção capturada do launcher

java.lang.reflect.InvocationTargetException

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)

at java.base/java.lang.reflect.Method.invoke(Method.java:580)

at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:69)

at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:105)

at org.prismlauncher.EntryPoint.listen(EntryPoint.java:129)

at org.prismlauncher.EntryPoint.main(EntryPoint.java:70)

Causado por: java.lang.reflect.InvocationTargetException

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)

at java.base/java.lang.reflect.Method.invoke(Method.java:580)

at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133)

at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53)

at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19)

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)

... 5 mais

Causado por: java.lang.IllegalStateException: Falha ao criar uma janela GLFW com qualquer perfil

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(DisplayWindow.java:434)

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.start(DisplayWindow.java:295)

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize(DisplayWindow.java:159)

at SECURE-BOOTSTRAP/net.minecraftforge.fmlloader@1.21.8-58.0.5/net.minecraftforge.fml.loading.ImmediateWindowHandler.load(ImmediateWindowHandler.java:49)

at SECURE-BOOTSTRAP/net.minecraftforge.fmlloader@1.21.8-58.0.5/net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(ModDirTransformerDiscoverer.java:43)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(TransformationServicesHandler.java:150)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.Launcher.run(Launcher.java:84)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.Launcher.main(Launcher.java:75)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17)

at net.minecraftforge.bootstrap@2.1.7/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188)

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)

... 10 mais

Saindo com ERRO

[09:59:59] [main/ERROR] [EARLYDISPLAY/]: ERRO DISPLAY

Falha ao inicializar a janela gráfica com as configurações atuais.

Failure details:

Failed to find a valid GLFW profile.

We tried 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.3, 3.2 but none of them worked.

Trying 4.6: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.5: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.4: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.3: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.2: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.1: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.0: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 3.3: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 3.2: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

If you click yes, we will try and open https://links.minecraftforge.net/early-display-errors in your default browser

The process was terminated with code 2.

submitted by /u/Gui-Linux
[link] [comments]

Error on Prism Launcher

28 Sep 2025 - 2:15pm

Prism Launcher version: 9.4 (flatpak)

Launched instance in online mode

login.microsoftonline.com resolves to:

[2603:1056:2000:38::5, 2603:1057:2:28::2, 2603:1056:2000:30::, 2603:1056:2000:30::11, 2603:1056:2000:38::4, 2603:1056:2000:30::5, 2603:1056:2000:38::2, 2603:1057:2:38::, 20.190.173.68, 40.126.45.19, 20.190.173.130, 20.190.173.145, 20.190.173.132, 20.190.173.3, 20.190.173.2, 40.126.45.17]

session.minecraft.net resolves to:

[2620:1ec:bdf::34, 2620:1ec:46::34, 13.107.246.34, 13.107.213.34]

textures.minecraft.net resolves to:

[2620:1ec:bdf::34, 2620:1ec:46::34, 13.107.246.34, 13.107.213.34]

api.mojang.com resolves to:

[2620:1ec:46::34, 2620:1ec:bdf::34, 13.107.246.34, 13.107.213.34]

Minecraft folder is:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/instances/1.21.8/minecraft

Java path is:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/java/java-runtime-delta/bin/java

Java is version 21.0.7, using 64 (amd64) architecture, from Microsoft.

AMD Ryzen 5 3550H with Radeon Vega Mobile Gfx

Advanced Micro Devices, Inc. [AMD/ATI] Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile Series] (rev c2)

Subsystem: Acer Incorporated [ALI] Device 1366

Kernel driver in use: amdgpu

OpenGL version string: 4.6 (Compatibility Profile) Mesa 25.2.2 (git-22ded5f256)

Main Class:

io.github.zekerzhayard.forgewrapper.installer.Main

Native path:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/instances/1.21.8/natives

Traits:

traits FirstThreadOnMacOS

traits feature:is_quick_play_multiplayer

traits feature:is_quick_play_singleplayer

traits XR:Initial

Libraries:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-freetype-natives-linux/3.3.3/lwjgl-freetype-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw-natives-linux/3.3.3/lwjgl-glfw-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-glfw/3.3.3/lwjgl-glfw-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc-natives-linux/3.3.3/lwjgl-jemalloc-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-natives-linux/3.3.3/lwjgl-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-openal-natives-linux/3.3.3/lwjgl-openal-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-openal/3.3.3/lwjgl-openal-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl-natives-linux/3.3.3/lwjgl-opengl-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-opengl/3.3.3/lwjgl-opengl-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-stb-natives-linux/3.3.3/lwjgl-stb-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-stb/3.3.3/lwjgl-stb-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd-natives-linux/3.3.3/lwjgl-tinyfd-natives-linux-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl-tinyfd/3.3.3/lwjgl-tinyfd-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lwjgl/lwjgl/3.3.3/lwjgl-3.3.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/fasterxml/jackson/core/jackson-databind/2.13.4.2/jackson-databind-2.13.4.2.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/github/oshi/oshi-core/6.6.5/oshi-core-6.6.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/google/guava/guava/33.3.1-jre/guava-33.3.1-jre.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/ibm/icu/icu4j/76.1/icu4j-76.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/microsoft/azure/msal4j/1.17.2/msal4j-1.17.2.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/authlib/6.0.58/authlib-6.0.58.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/brigadier/1.3.10/brigadier-1.3.10.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/datafixerupper/8.0.16/datafixerupper-8.0.16.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/jtracy/1.0.29/jtracy-1.0.29.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/jtracy-natives-linux/1.0.29/jtracy-natives-linux-1.0.29.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/logging/1.5.10/logging-1.5.10.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/text2speech/1.18.11/text2speech-1.18.11.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/nimbusds/content-type/2.3/content-type-2.3.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/nimbusds/lang-tag/1.7/lang-tag-1.7.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/nimbusds/nimbus-jose-jwt/9.40/nimbus-jose-jwt-9.40.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/nimbusds/oauth2-oidc-sdk/11.18/oauth2-oidc-sdk-11.18.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/commons-codec/commons-codec/1.17.1/commons-codec-1.17.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/commons-io/commons-io/2.17.0/commons-io-2.17.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/commons-logging/commons-logging/1.3.4/commons-logging-1.3.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-transport-classes-epoll/4.1.118.Final/netty-transport-classes-epoll-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/java/dev/jna/jna-platform/5.15.0/jna-platform-5.15.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minidev/accessors-smart/2.5.1/accessors-smart-2.5.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minidev/json-smart/2.5.1/json-smart-2.5.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/commons/commons-compress/1.27.1/commons-compress-1.27.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/logging/log4j/log4j-api/2.24.1/log4j-api-2.24.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/logging/log4j/log4j-core/2.24.1/log4j-core-2.24.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/logging/log4j/log4j-slf4j2-impl/2.24.1/log4j-slf4j2-impl-2.24.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/jcraft/jorbis/0.0.17/jorbis-0.0.17.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/ow2/asm/asm/9.8/asm-9.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/slf4j/slf4j-api/2.0.16/slf4j-api-2.0.16.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/io/github/zekerzhayard/ForgeWrapper/prism-2025-07-01/ForgeWrapper-prism-2025-07-01.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/forge/1.21.8-58.0.5/forge-1.21.8-58.0.5-universal.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/JarJarFileSystems/0.3.26/JarJarFileSystems-0.3.26.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/securemodules/2.2.21/securemodules-2.2.21.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/unsafe/0.9.2/unsafe-0.9.2.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/ow2/asm/asm-tree/9.8/asm-tree-9.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/ow2/asm/asm-util/9.8/asm-util-9.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/ow2/asm/asm-commons/9.8/asm-commons-9.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/ow2/asm/asm-analysis/9.8/asm-analysis-9.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/de/oceanlabs/mcp/mcp_config/1.21.8-20250717.105350/mcp_config-1.21.8-20250717.105350-srg2off.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/bootstrap/2.1.8/bootstrap-2.1.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/bootstrap-api/2.1.8/bootstrap-api-2.1.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/accesstransformers/8.2.2/accesstransformers-8.2.2.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/eventbus/7.0-beta.10/eventbus-7.0-beta.10.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/forgespi/7.1.5/forgespi-7.1.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/coremods/5.2.6/coremods-5.2.6.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/modlauncher/10.2.4/modlauncher-10.2.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/mergetool-api/1.0/mergetool-api-1.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/electronwill/night-config/toml/3.7.4/toml-3.7.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/electronwill/night-config/core/3.7.4/core-3.7.4.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/apache/maven/maven-artifact/3.8.8/maven-artifact-3.8.8.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/jline/jline-reader/3.25.1/jline-reader-3.25.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/jline/jline-terminal/3.25.1/jline-terminal-3.25.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/jline/jline-terminal-jna/3.25.1/jline-terminal-jna-3.25.1.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/org/spongepowered/mixin/0.8.7/mixin-0.8.7.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/JarJarSelector/0.3.26/JarJarSelector-0.3.26.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/JarJarMetadata/0.3.26/JarJarMetadata-0.3.26.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/fmlcore/1.21.8-58.0.5/fmlcore-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/fmlloader/1.21.8-58.0.5/fmlloader-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/fmlearlydisplay/1.21.8-58.0.5/fmlearlydisplay-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/javafmllanguage/1.21.8-58.0.5/javafmllanguage-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/lowcodelanguage/1.21.8-58.0.5/lowcodelanguage-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/mclanguage/1.21.8-58.0.5/mclanguage-1.21.8-58.0.5.jar

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/com/mojang/minecraft/1.21.8/minecraft-1.21.8-client.jar

Native libraries:

Mods:

[✔] preview_OptiFine_1.21.8_HD_U_J6_pre14

Params:

--username --version 1.21.8 --gameDir /home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/instances/1.21.8/minecraft --assetsDir /home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/assets --assetIndex 26 --uuid --accessToken --userType --versionType release --launchTarget forge_client --fml.forgeGroup net.minecraftforge --fml.forgeVersion 58.0.5 --fml.mcVersion 1.21.8

Window size: 854 x 480

Launcher: standard

Java Arguments:

[-Xms512m, -Xmx4096m, -Duser.language=en]

Minecraft process ID: 208

JVM info: Microsoft - 21.0.7 - 21.0.7+6-LTS

java.net.preferIPv4Stack=true

Current Time: 28/09/2025 09:05:25

Created Temporary Directory: /tmp/forge_installer16554554613032763264

Extracting: /data/client.lzma

Building Processors

Cache:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraft/client/1.21.8/client-1.21.8-mappings.tsrg Validated: 56f174c782889477234ec76a438fb8b9ba8bb15e

Cache Hit!

Cache:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraft/client/1.21.8/client-1.21.8-official.jar Validated: efb03fa5640e3e3d349720a6f1590dc790f86242

Cache Hit!

Cache:

/home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/libraries/net/minecraftforge/forge/1.21.8-58.0.5/forge-1.21.8-58.0.5-client.jar Validated: 1eec4fcf0c67c14912988e48f4e9e18662ae4202

Cache Hit!

2025-09-28T12:05:27.917480208Z main WARN Advanced terminal features are not available in this environment

[09:05:27] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Guicraft_java, --version, 1.21.8, --gameDir, /home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/instances/1.21.8/minecraft, --assetsDir, /home/guilherme/.var/app/org.prismlauncher.PrismLauncher/data/PrismLauncher/assets, --assetIndex, 26, --uuid, <ID DO PERFIL>, --accessToken, **********, --userType, msa, --versionType, release, --launchTarget, forge_client, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 58.0.5, --fml.mcVersion, 1.21.8, --width, 854, --height, 480]

[09:05:27] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: JVM identified as Microsoft OpenJDK 64-Bit Server VM 21.0.7+6-LTS

[09:05:27] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.2.4 starting: java version 21.0.7 by Microsoft; OS Linux arch amd64 version 6.8.0-84-generic

[09:05:28] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.5

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.4

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.3

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.2

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.1

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.0

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 3.3

DRI3 not available

[09:05:28] [main/INFO] [EARLYDISPLAY/]: Trying GL version 3.2

DRI3 not available

[09:05:28] [main/ERROR] [EARLYDISPLAY/]: Failed to find any valid GLFW profile. Trying 4.6: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

[09:05:28] [main/ERROR] [EARLYDISPLAY/]: ERROR DISPLAY

Failed to initialize graphics window with current settings.

Failure details:

Failed to find a valid GLFW profile.

We tried 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.3, 3.2 but none of them worked.

Trying 4.6: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.5: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.4: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.3: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.2: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.1: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 4.0: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 3.3: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

Trying 3.2: GLFW error: [0x10009]GLX: Failed to find a suitable GLXFBConfig

If you click yes, we will try and open https://links.minecraftforge.net/early-display-errors in your default browser

Exception caught from launcher

java.lang.reflect.InvocationTargetException

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)

at java.base/java.lang.reflect.Method.invoke(Method.java:580)

at io.github.zekerzhayard.forgewrapper.installer.Main.main(Main.java:69)

at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:105)

at org.prismlauncher.EntryPoint.listen(EntryPoint.java:129)

at org.prismlauncher.EntryPoint.main(EntryPoint.java:70)

Caused by: java.lang.reflect.InvocationTargetException

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)

at java.base/java.lang.reflect.Method.invoke(Method.java:580)

at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133)

at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53)

at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19)

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)

... 5 more

Caused by: java.lang.IllegalStateException: Failed to create a GLFW window with any profile

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(DisplayWindow.java:434)

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.start(DisplayWindow.java:295)

at SECURE-BOOTSTRAP/net.minecraftforge.earlydisplay@1.21.8-58.0.5/net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize(DisplayWindow.java:159)

at SECURE-BOOTSTRAP/net.minecraftforge.fmlloader@1.21.8-58.0.5/net.minecraftforge.fml.loading.ImmediateWindowHandler.load(ImmediateWindowHandler.java:49)

at SECURE-BOOTSTRAP/net.minecraftforge.fmlloader@1.21.8-58.0.5/net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(ModDirTransformerDiscoverer.java:43)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(TransformationServicesHandler.java:150)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.Launcher.run(Launcher.java:84)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.Launcher.main(Launcher.java:75)

at SECURE-BOOTSTRAP/cpw.mods.modlauncher@10.2.4/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17)

at net.minecraftforge.bootstrap@2.1.7/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188)

at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)

... 10 more

Exiting with ERROR

O processo foi encerrado com o código 2.

submitted by /u/Gui-Linux
[link] [comments]

Games have 100+ FPS but they run like 15 FPS

28 Sep 2025 - 1:57pm

I've recently installed Zorin OS on my Acer Aspire laptop from 2016. It has GeForce 940MX and i5-7200U. I've noticed a problem in certain games where the gameplay feels very choppy despite framerate being high. For example, I'm playing Counter-Strike Source and I have over 100 FPS but it feels like 15 FPS. There are two workarounds

  1. Turning on V-Sync but it causes input lag and messes up with my aiming
  2. Setting a scale to 125% or higher, but it makes my screen blurry

What can I do to fix it?

Edit: I tried installing a diffrent driver but now it only shows Intel HD Graphics and nvidia-smi says that it couldn't communicate with the NVIDIA driver. Switching back to the old driver didn't help. Did I cook my NVIDIA?

submitted by /u/MatiBlaster
[link] [comments]

Big Linux operating system installed.

28 Sep 2025 - 1:44pm

I installed the Big Linux gnome version on the PC and it is extremely spectacular. Morally, for me any Linux distro based on Arch Linux is very good.

submitted by /u/Doudy34
[link] [comments]

New LockBit 5.0 ransomware Targets Windows and Linux linux desktop

28 Sep 2025 - 1:15pm

a new ransomware seems to now target linux desktop operating systems.

so caution.

submitted by /u/tailslol
[link] [comments]

How do you all have your Linux filesystems set up? Is it worth installing larger files (games, etc.) in a separate partition from system files?

28 Sep 2025 - 1:13pm

I'm in the process of fully moving all of my Windows stuff onto Linux. I've been dual booting Windows 10 and Arch for about a year now, it's been going great, haven't nuked everything yet. I've been doing 50% of my computer work on Linux and I'm at the point where I want to get everything else moved over too.

The big thing I need to install on Linux now is my library of games, which is around 500gb (my entire /home directory is currently less than 20gb at the moment for reference). This has gotten me thinking about the best way to actually structure my filesystem going forward, as so far I've not given much thought to it; I just did what the archinstall setup recommended, which has worked fine so far.

My current setup is fairly simple: My whole Linux installation is on a 2TB SSD (Btrfs), no separate /home partition or anything, and I have a few folders (Documents, Downloads, Photos, etc.) symlinked to a 1TB HDD, since I don't want to be writing tons of random crap onto my SSD for no reason.

I'm aware that at some point in the future I'll probably end up reinstalling Linux, either when distrohopping or (more likely) when I screw up and break everything, and in the event of me having to delete my root directory there are things I'd rather not have to reinstall. Namely, hundreds of gigabytes of game data that I'd need to redownload and set up from scratch. So before I go too far with installing things in a way that could potentially be a massive pain to redo if/when I need to, I'd like to get things set up in a 'safer' configuration.

How do you all have your Linux filesystems set up? Is this a case where a separate /home partition would be worth it, or even just a separate partition exclusively for games/large applications? Are there any general "best practices" for this sort of thing?

P.S. I'm vaguely aware that Btrfs has subvolumes, but truth be told I haven't looked into Btrfs' functionality nearly at all and I'm not confident setting that up at this point or if it even does what I want it to here.

submitted by /u/RequestableSubBot
[link] [comments]

Solo leveling Arise: Linux

28 Sep 2025 - 11:07am

Has anyone successfuly been able to get this game running on linux?, its literally the only reason I havent made the full switch to linux, and the reason I havent even made my current old gaming laptop into a bazzite home console.

Please if you have any work around with a detailed guide please lemme know, much appreicated.

Edit: so just to clarify its the solo leveling arise game from netmarble, not the one coming to steam as thats a different game

submitted by /u/AdigaWolf
[link] [comments]

Pages