Warum starten meine Steam Games auf Linux Mint nicht mehr?

Ich habe heute GTAV gespielt nch dem ich was ausprobiert habe, hab ich das spiel alt 4rt und nun startet das Game nicht mehr ich habe mit Timeshift ein Backup von gestern schon geladen und auch andere Treiber installiert.

Logs:

XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xefe129c0
XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xefe111f0
/usr/share/themes/Mint-Y-Dark-Grey/gtk-2.0/main.rc:1045: error: unexpected identifier 'direction', expected character '}'
steamwebhelper.sh[6193]: === Mi 17. Apr 15:49:13 CEST 2024 ===
steamwebhelper.sh[6193]: Starting steamwebhelper under bootstrap sniper steam runtime at /home/fabian/.steam/debian-installation/ubuntu12_64/steam-runtime-sniper
CAppInfoCacheReadFromDiskThread took 44 milliseconds to initialize
Steam Runtime Launch Service: starting steam-runtime-launcher-service
Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 6283
bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
BRefreshApplicationsInLibrary 1: 1ms
BuildCompleteAppOverviewChange: 456 apps
RegisterForAppOverview 1: 15ms
RegisterForAppOverview 2: 15ms
x86_64-linux-gnu-capsule-capture-libs: warning: Dependencies of libnvidia-pkcs11.so.535.171.04 not found, ignoring: Missing dependencies: Could not find "libcrypto.so.1.1" in LD_LIBRARY_PATH "/home/fabian/.steam/debian-installation/ubuntu12_32:/home/fabian/.steam/debian-installation/ubuntu12_32/panorama:/usr/lib/x86_64-linux-gnu/libfakeroot:/lib/i386-linux-gnu:/usr/local/lib:/lib/x86_64-linux-gnu:/lib", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
esync: up and running.
/bin/sh\0-c\0/home/fabian/.steam/debian-installation/ubuntu12_32/reaper SteamLaunch AppId=553850 -- /home/fabian/.steam/debian-installation/ubuntu12_32/steam-launch-wrapper -- '/media/gamedisk/SteamLibrary/steamapps/common/SteamLinuxRuntime_sniper'/_v2-entry-point --verb=waitforexitandrun -- '/media/gamedisk/SteamLibrary/steamapps/common/Proton - Experimental'/proton waitforexitandrun  '/media/gamedisk/SteamLibrary/steamapps/common/Helldivers 2/bin/helldivers2.exe' --bundle-dir data --release\0
chdir "/media/gamedisk/SteamLibrary/steamapps/common/Helldivers 2"
ERROR: ld.so: object '/home/fabian/.steam/debian-installation/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/fabian/.steam/debian-installation/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
ERROR: ld.so: object '/home/fabian/.steam/debian-installation/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/fabian/.steam/debian-installation/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
ERROR: ld.so: object '/home/fabian/.steam/debian-installation/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
x86_64-linux-gnu-capsule-capture-libs: warning: Dependencies of libnvidia-pkcs11.so.535.171.04 not found, ignoring: Missing dependencies: Could not find "libcrypto.so.1.1" in LD_LIBRARY_PATH "/usr/lib/x86_64-linux-gnu/libfakeroot:/lib/i386-linux-gnu:/usr/local/lib:/lib/x86_64-linux-gnu:/lib:/media/gamedisk/SteamLibrary/steamapps/common/Helldivers 2", ld.so.cache, DT_RUNPATH or fallback /lib:/usr/lib
esync: up and running.
pid 6809 != 6808, skipping destruction (fork without exec?)
Uploaded AppInterfaceStats to Steam
Linux, Linux Mint, Steam
./startserver.sh: line 58: unexpected EOF while looking for matching ./startserver.sh: line 61: syntax error: unexpected end of file?

Ich habe das Problem ich finde nicht den Fehler könnte mir jemand helfen bin erst anfänger.

Will einen Minecraft Serverstarter machen.

#!/bin/bash


    if [ -f craftbukkit-1.16.5.jar ]; then
            echo "Skipping download. Using existing craftbukkit-1.16.5.jar"
            java -Xmx5G -Xms5G -jar craftbukkit-1.16.5.jar
               if [[ $DO_RAMDISK -eq 1 ]]; then
               sudo umount $SAVE_DIR
               rm -rf $SAVE_DIR
               mv "${SAVE_DIR}_backup" $SAVE_DIR
               fi
    else
            export URL="https://cdn.getbukkit.org/craftbukkit/craftbukkit-1.16.5.jar"
    fi
        echo $URL
        which wget >> /dev/null
    if [ $? -eq 0 ]; then
        echo "DEBUG: (wget) Downloading ${URL}"
        wget -O craftbukkit-1.16.5.jar "${URL}"
   else
        which curl >> /dev/null 
        if [ $? -eq 0 ]; then
        echo "DEBUG: (curl) Downloading ${URL}"
        curl -o craftbukkit-1.16.5.jar "${URL}"
        else
        echo "Neither wget or curl were found on your system. Please install one and try again"
        fi
    fi
    
    if egrep -q eula=true eula.txt; then
            echo Starting ...
            java -Xmx5G -Xms5G -jar craftbukkit-1.16.5.jar nogui
            exit
    else
        Height=15
        WIDTH=40
        CHOICE_HEIGHT=4
        BACKTITLE="Bukkit"
        TITLE="Choice"
        MENU="Do you accet the eula at (https://account.mojang.com/documents/minecraft_eula) ? "
        OPTIONS=(1 "Yes
                 2 "No")


        CHOICE=$(dialog --clear \
                        --backtitle "$BACKTITLE" \
                        --title "$TITLE" \                              --menu "$MENU" \
                        $HEIGHT $WIDTH $CHOICE_HEIGHT \
                        "${OPTIONS[@]}" \
                        2>&1 >/dev/tty)


            clear
            case $CHOICE in
                    1)
                        echo "You accepted the eula..."
                        sed s/false/true/g eula.txt
                        java -Xmx5G -Xms5G -jar craftbukkit-1.16.5.jar nogui
                        ;;
                    2)
                        echo "You not Accepted the eula"
                        ;;
    fi
programmieren, Ubuntu, Minecraft, Bash, Minecraft Server
Weitere Inhalte können nur Nutzer sehen, die bei uns eingeloggt sind.