tombunraider

Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

tombunraider's Achievements

Noob

Noob (1/14)

1

Reputation

  1. I saw that v6.11.0-rc2 is released now, but there's currently no changelog or thread.
  2. Under "Advanced Mode", I've found the "Docker Hub URL" parameter which corresponds to the menu's "More Info" link. However, I couldn't find entries for the other two links for: Project Page, Support
  3. Hi, when clicking on a Docker container's icon, a menu appears with or without the Project Page and Support links. Is it possible to set or change these values? I couldn't find it through the UI, so wouldn't mind setting these through modifying files directly either.
  4. Chiming in with my experience on RC4 (5.15.30-Unraid), so far. - 12th Gen Intel(R) Core(TM) i7-12700K - 64GB DDR4-3200 - AsRock Z690 Pro RS - Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05) -- Kernel driver in use: r8169 - Fan speed and temperature sensors working with nct6798 Lots of dockers, zero VMs. Disabled hardware encoding for Plex in the app's settings, but still passing through a /dev/dri device, so I can turn it back on easily when it's ready. I can't confirm the Realtek LAN at 2.5GbE, as I'm using a 10GbE PCIe card instead. I have not experienced a single crash/freeze.
  5. This sounds like the setup I'll need to go with! The system should be powerful enough to do transcoding in CPU. I've forgotten how to disable Plex HW transcoding. Is it as simple as removing the passthrough /dev/dri in Docker settings, or did you change settings in Plex itself? Finally, how does your /boot/config/modprobe.d/i915.conf look (force_probe or blacklist), and do you have the Intel GPU TOP plugin installed or uninstalled?
  6. Wow, I was just looking for something like this! Do you have a photo of your Pico setup? Trying to think of how I can add some buttons to my hardware without looking out of place. I have an Arduino Uno lying around, would it be good for this kind of project? I'm new to Arduino, but not clueless when it comes to embedded devices.
  7. Finally upgraded from 6.9.2 to 6.10.0-rc3! No issues so far rebooting into the new UI and logging in.
  8. Could you add the_silver_searcher / ag ? I couldn't find a pre-built binary for the last version, 2.2.0, only 2.1.0 at https://slackonly.com/pub/packages/current-x86_64/system/the_silver_searcher/
  9. This was annoying me too! I fixed this by adding a custom linuxserver.io script that fixes the HTML template file whenever the container starts up. Create a directory called custom-cont-init.d inside of your app cache, eg: /mnt/cache/appdata/calibre/custom-cont-init.d Create a script file: fix-title.sh #!/bin/bash export TITLE="calibre" export VERSION=`grep "CALIBRE_VERSION = \"[0-9]" /opt/calibre/resources/viewer.js | cut -d '"' -f2` sed -i -e "s/\(<title>\).*\(<\/title>\)/<title>${TITLE} ${VERSION}<\/title>/g" /gclient/rdp.ejs chmod 755 on the script file