I once met a person that never drank water, only soft drinks. It’s not the unhealthiness of this that disturbed me, but the fact they did it without the requisite paperwork.

Unlike those disorganised people I have a formal waiver. I primarily drink steam and crushed glaciers.

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

help-circle



  • 10 sec

    Filthy casual.

    My family has a Chiq U58G7P. Warm boots take about 30 sec and cold boots a few minutes.

    Don’t try and press any buttons on the remote during this time or for a minute or two afterwards. They might work, 15 seconds later, or they might get ignored. Sometimes your button press inputs get re-ordered too.

    Factory resets do work, but then all it can do is broadcast TV. If you let it update and install streaming apps then you will be back to the same problems.

    I suspect that it might be running out of RAM and thrashing some poor innocent MMC as swap, but I can’t find a USB ADB port to properly find out (maybe it has one internally?).
















  • A method I have not seen mentioned yet (for when you have an old precompiled version of an app):

    1. Identify the missing libs. You can run the program, but sometimes it’s easier to use ldd
    2. Use your web browser to download the missing libs from Debian’s repos (stable or older if need be). Unfortunately you often also have to grab their deps too.
    3. Extract the .debs
    4. Move all of the .so files into the same folder as the old program you are trying to run
    5. export LD_LIBRARY_PATH=“$(pwd)”
    6. Now try running the app

    It often takes a bit of fiddling, but it’s worked for me a few times and you only need to fetch the few libraries you are missing. For bigger things however it can be a dependency hell, you might as well use the distro’s actual package manager inside a chroot.

    Note: You don’t need to be using Debian as your host distro, I don’t. As long as it’s a glibc based distro you should be mostly fine (glibc is mostly backwards compatible)