• 305 Posts
  • 1.04K Comments
Joined 1 year ago
cake
Cake day: July 19th, 2023

help-circle


  • I probably can’t help, I have ROCM acceleration working on my desktop linux PC for image gen and LLMs, but I don’t think I had to install the massive rocm files for it to work.

    What specifically are you trying to run using ROCM? If I remember right most of the stuff I tried just needed pytorch, which I would install in a python venv with pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.3 That’s still pretty heft though, my current venv is 16GB in size, but may include some duplicate/old files from repeated upgrades without cleaning.




















  • Honestly the best at method will depend on the specific game. Generally the best way is to just have the install folder for a game, and add the .exe to steam as a “non-steam game”. Force a compatibility in steam game properties and select a version of proton. Some games will require additional windows components/dll to be installed through proton tricks.

    Other good options are lutris has automatic installers for a lot of games, and many will work off of a disc iso image. Bottles is also a good tool for installing windows games.





  • Depends on the game. Most common setup is just mapping the ABXY buttons to them, so I don’t have to take my finger off the right thumb stick to press them. In Elden Ring I use them for dpad presses instead, because I need to cycle spells/use recovery items without stopping moving.

    I know a lot of people use them for L3 R3 instead of clicking the sticks.

    In a couple games with smaller text I use one for toggling the magnifier, or in keyboard heavy games for opening the keyboard.


  • Inside konsole, you can use different shells. Some common ones are bash, fish, and zsh. The deck comes with all three of those installed by default.

    You can usually tell which one you’re using by either looking at the title bar of konsole when you first open it (should say something like ~:bash – Konsole) or by running the command echo $SHELL

    Once you’ve confirmed you’re using bash, run which python (or which python3 if you’re using python 3). Outside of the venv you should see the command return /usr/bin/python

    After you run your source command, run which python again. You should now see that the python location being run has changed to be inside the venv folder.