• 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: June 28th, 2023

help-circle
  • I own the LCD deck and goofed off with the OLED deck. The screen is perfect, just like I imagined. But the thing that caught me off guard was how much lighter it feels. They say it’s 30% or something lighter, but because of the way that you typically hold it, it feels half the weight. The joysticks also have a deep recess on the inside, which makes your thumbs slip a lot less.

    Overall, I would say that if you currently have a Deck and play it every day, if you can sell your old one for a reasonable price, the cost is probably worth it. If you’re a casual gamer and you only play every so often, the upgrades on the new Deck are great to have but probably not worth the cost. As a new purchase, OLED without question.



  • It’s more or less a consumer version of their RA2 system, which is its own protocol. The gateway interacts with the whole system using commands issued over telnet though, so you actually have a command line for operating and configuring it. It integrates with a bunch of closed systems, and it integrates right into Home Assistant with a first-party HA integration.

    It’s not like you can inspect the source code for their firmware push up pull requests on GitHub, so I’m this aspect, yes, it is proprietary. However, with tools like Home Assistant, which is something you probably should be using, this becomes much less of a concern, in my opinion. It’s robust, high-quality, and is commonplace, so you can get bits and pieces at Home Depot.

    If you’re interested in something that will work with mesh networks and you aren’t interested in running software like Home Assistant, you should look for Z-Wave or Zigbee hardware. Read reviews though; I’ve had a lot of mixed experiences with hardware, even from “trusted” vendors.










  • Thank you for the great logs and very thorough reply! Here’s what I’d do!

    On step 3 I went to /etc/pacman.conf and I couldnt find [multilib] I could only find [multilib-rel]. So I added ‘[multilib] Include = /etc/pacman.d/mirrorlist’ like the guide said. Then I did sudo pacman -Syu and the update failed.

    holo-rel is up to date core-rel is up to date extra-rel is up to date community-rel is up to date multilib-rel is up to date multilib.db failed to download error: failed retrieving file ‘multilib.db’ from steamdeck-packages.steamos.cloud : The requested URL returned error: 404 error: failed to synchronize all databases (failed to retrieve some files)

    Since the [multilib-rel] section is already there, I’d just make sure that’s uncommented. I wouldn’t add the [multilib] section. Seems like that could be a typo perhaps. In the upstream Arch mirrors, it’s [multilib], so they probably got it mixed up. If this works, I’d write the author of this guide to have them correct it.

    Then after that I went through the steps and got to installing lutris. Which gave me this error for every package required. Do you want to delete it? [Y/n] y error: python-lxml: signature from "Felix Yan " is unknown trust :: File /var/cache/pacman/pkg/python-lxml-4.9.1-1-x86_64.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)). Do you want to delete it? [Y/n] ^C

    Sounds like the PGP keys are either not synced or out-of-date. Assuming the Deck works like upstream Arch, you should be able to run:

    pacman-key --init
    pacman-key --populate
    

    After this, try your pacman command again.

    More information here: https://wiki.archlinux.org/title/Pacman/Package_signing

    Hope this works! Let me know if you run into any more friction and I’m happy to help!