Reddit Linux_Gaming

Reddit Linux_Gaming Feed abonnieren
A subreddit for discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck).newest submissions : linux_gaming
Aktualisiert: vor 51 Minuten 59 Sekunden

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

28. September 2025 - 15:10
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. September 2025 - 15:02

[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. September 2025 - 14:15

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. September 2025 - 13:57

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. September 2025 - 13:44

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. September 2025 - 13:15

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. September 2025 - 13:13

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. September 2025 - 11:07

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]

Heroic Game Launcher no audio after a while into the game

28. September 2025 - 08:46

Hi everyone, I am happily using kubuntu, but when I try to open games on heroic games launcher they open fine. However, after a while the audio stop. I searched online and found about the pulseaudiolib which I checked I have installed and running, but the only turnaround I found is erratically turning on/off on pavucontrol pulseaudio when the problem starts and after a while in-game still audio keeps stopping. Please help, i don't know what to do anymore.

P.s. I tried switching to lutris but I find the problem also here

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

My Bugfix for Minecraft.deb’s “lib-gdk2.0-0” error.

28. September 2025 - 08:16

Good evening, everyone. Recently, I created a .sh script that resolves the libgdk-2.0-0 dependency error within the official Minecraft.deb installer. My main release includes the .sh script and its reproducible .deb package. I hope it serves you well in the Debian branch of Linux gaming.

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

Plans to switch to amd4 build Advice /build

28. September 2025 - 06:56

I have a 9100f build with a gtx 1070 and 32gb of ddr4 3200. I'm running bazitte but the cpu performance is struggling on some games.

Was thinking hoping to amd 4 before parts go up them being older. Yeah I could upgrade cpu on the intel but m-atx mb is lacking a bit in features like no m.2. I got a 1tb pny cs2241 for $20 be nice to use.

My psu is 850 evga g2 but 10 years old. So would need that too. I don't necessarily need storage for now.

What cpu/mb should I look at? I dont care brand loyalty but seems b550 are built better vram. No I would not oc but I like reliable like my 10 year old psu lol.

I'm usually 1080p gaming but I do stream 720p just to try and be social and see how performs currently.

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

DualShock 4 Detection Issues in Shadow of the Tomb Raider via Heroic Games Launcher

28. September 2025 - 04:49

The "Survivor Trilogy" of Tomb Raider has been released in GOG, so i wanted to play those versions from GOG using Heroic Games Launcher.
Now, when playing Shadow of the Tomb Raider installed through Heroic Games Launcher, the DualShock 4 controller behaves inconsistently. Without any modifications, the game detects the controller and shows PlayStation button icons, but the analog sticks are misaligned (moving right acts like up, left acts like down, etc.).

Importing a Wine registry file to enable SDL fixes the stick behavior, but the game then detects two controllers simultaneously: one Xbox and one PlayStation. This causes the on-screen buttons to flicker between Xbox and PlayStation icons, and stick input occasionally freezes.

Does anyone know how could i fix this?

https://reddit.com/link/1nsde1a/video/m8m8fxtektrf1/player

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

R2ModMan refuses to recognize steam executable

28. September 2025 - 04:36

Title. I've been trying to manually set the location of my steam executable in R2modman for a while now, but it refuses to give any of the ways I can open steam the time of day.

Desktop? Doesn't recognize it. usr/games/steam folder? Doesn't recognize it. I can't seem to find the executable it'll let me select for it to actually run mods in my games (specifically Peak, in this case), and it's really frustrating since every time I google something about it, it seems nobody's had the same issue. It won't let me select just a folder, either, it has to be the steam executable.

This might be a stupid question, I'm still really new to linux, but I don't know what to do at this point. I'm using the latest version of Linux Mint, and I've tried the appimage download and the deb download, and both have given me the same issue, plus every installation guide I've looked at just doesn't say anything about this problem. I've tried restarting my pc, reinstalling R2, adding R2 to my Steam games list even, just kinda hoping for a miracle.

Steam opens fine, R2 opens fine, and Peak opens fine. I also don't have a lot of faith that the Peak executable would be recognized, either, but I haven't tried yet.

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

What Are The Chances Of Xbox App And Services Ported To Linux?

28. September 2025 - 01:36

Since the CEO is open sources (some stuff). what are the chances of get the port for linux? i know Xbox is not going to be open source but they did make changes to win32 app-like so what is the chances

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

SwayWM, RTX 5080, subpar framerates

28. September 2025 - 01:22

Is Sway just plain unusable with NVIDIA? Would LabWC work fine or should I just go right on back to x11/xlibre?

I'd prefer to not have to change all of my software back but I'd like to have my GPU I just dropped a G on work flawlessly.

Anyone get it to play nicely?

submitted by /u/223-Remington
[link] [comments]

When using microphone, players hear my game audio in addition to voice

28. September 2025 - 00:53

PoP OS 22.04, Steam. Happened in more than one game. Portal 2 and Overwatch, one is linux native, the other is not.

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

Seiten