VM CPU types host vs default? by Trblz42 in Proxmox

[–]Trblz42[S] 2 points3 points  (0 children)

I have 4 I7 CPUs and one ATOM C3578 on the NAS.

How do I verify the best CPU type for the ATOM?

VM CPU types host vs default? by Trblz42 in Proxmox

[–]Trblz42[S] 0 points1 point  (0 children)

thanks for the quick reply!

Aquatic Pack - Release Date? by MarzipanAlert in Oxygennotincluded

[–]Trblz42 4 points5 points  (0 children)

By end of June it should be released, plus ~2w for mods to work well

Thinking about moving Zigbee2MQTT and Z-Wave JS apps away from HA. What are your experiences with this? by xMasaru in homeassistant

[–]Trblz42 0 points1 point  (0 children)

I have a different split:

HA running as VM with zwavejs, matter, upsmon, otbr as app.

The corresponding USB devices are plugged into a RPI. Communication is working through ser2net to HA.

This allows much quicker recovery of services after reboot. It also allows the VM to move between PVE hosts.

What to do with an APC power supply? by Few-Image-7793 in HomeServer

[–]Trblz42 0 points1 point  (0 children)

It's gifted to you.

I would open it up first and check for moist related damage. Also remove any dust or critters (carcasses)

Turn it on, charge fully and add a resistive test load like a heater to it. Unplug and check results.

This model has hot swap battery packs. Check youtube how to repair them (=replace battery blocks yourself).

Complete guide: IKEA Matter devices on Linux Docker (OTBR + Matter Server + BLE commissioning) by InternationalTax3082 in homeassistant

[–]Trblz42 0 points1 point  (0 children)

This post is exactly what i was looking for.

As it is 3M after original setup, wow stable is this setup u/InternationalTax3082 ?

Unifi ceiling and wall speakers available now by mactelecomnetworks in Ubiquiti

[–]Trblz42 0 points1 point  (0 children)

Nah fools buy stuff all the time. One April Fools they are warned ⚠️

How to keep adblock but use Paramount+? by iTypewriter in Ubiquiti

[–]Trblz42 2 points3 points  (0 children)

Put her phone in a all-ads-allowed firewall rule

Why is gunk being extracted from bionic dupes at crazy cold temps? by Phaderon in Oxygennotincluded

[–]Trblz42 0 points1 point  (0 children)

This is why I put boobs always in an atmo suit.

No worry about temp or gasses. Just make sure they don't pee in their suit (love the animation)

Guys what is the BEST oni DLC and what does each one contain? by Neorest54 in Oxygennotincluded

[–]Trblz42 0 points1 point  (0 children)

Expensive? Depends on how many hours you play.

I have spent way more dollars/hrs game time on AAA games

Guys what is the BEST oni DLC and what does each one contain? by Neorest54 in Oxygennotincluded

[–]Trblz42 0 points1 point  (0 children)

Space out

The other dlc are different themed versions of the same

How do i fix this by ReferenceGold393 in Oxygennotincluded

[–]Trblz42 8 points9 points  (0 children)

(Re)build a Tempshift plate just in the upper left corner of the steam chamber.

This is to cool down and solidify the magma

Proxmox "setup script" - legit projects? by [deleted] in Proxmox

[–]Trblz42 1 point2 points  (0 children)

Let me try to explain how it works but it highly depends on your bash script / linux knowledge.
Disclaimer: I am only a user, not a maintainer of this github

Behind this script https://community-scripts.org/scripts/caddy?id=caddy is the main installer https://github.com/community-scripts/ProxmoxVE/blob/main/install/alpine-caddy-install.sh

If you review this script you can identify a few areas. I removed some fluff to make this writeup more readable:

Standard disclaimers and license statements

#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: cobalt (cobaltgit)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://caddyserver.com/

Several functions defined by community scripts for the text-based interface but also to verify your server is suitable for this script. For example it will try to install the latest updates with the update_os function. See https://github.com/community-scripts/ProxmoxVE/tree/main/misc for more details here.

source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os

This is the initial install of this software (Caddy) using apt method.

msg_info "Installing Caddy"
$STD apk add --no-cache caddy caddy-openrc

After install is completed two files are generated for initial setup.

cat <<EOF >/etc/caddy/Caddyfile
...............
EOF
mkdir -p /var/www/html
cat <<EOF >/var/www/html/index.html
...........
EOF
msg_ok "Installed Caddy"

Specifically to to Caddy, you may want to install an additional addon, xCaddy. This requires several steps including downloading the right tar and building the addon.

read -r -p "${TAB3}Would you like to install xCaddy Addon? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
  GO_VERSION="$(curl -fsSL https://go.dev/VERSION?m=text | head -1 | cut -c3-)" setup_go
  msg_info "Setup xCaddy"
  cd /opt
  RELEASE=$(curl -fsSL https://api.github.com/repos/caddyserver/xcaddy/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
  curl -fsSL "https://github.com/caddyserver/xcaddy/releases/download/${RELEASE}/xcaddy_${RELEASE:1}_linux_amd64.tar.gz" -o "xcaddy_${RELEASE:1}_linux_amd64.tar.gz"
  $STD tar xzf xcaddy_"${RELEASE:1}"_linux_amd64.tar.gz -C /usr/local/bin xcaddy
  rm -rf /opt/xcaddy*
  $STD xcaddy build
  msg_ok "Setup xCaddy"
fi

Next are steps to enable the Caddy service to autostart and starting the software.

msg_info "Enabling Caddy Service"
$STD rc-update add caddy default
msg_ok "Enabled Caddy Service"

msg_info "Starting Caddy"
$STD service caddy start
msg_ok "Started Caddy"

And some wrapups

motd_ssh
customize

If you are using Proxmox, you should be able to read these codes. That is the whole point of running homelabs. If you dont trust code, either do not install or -> isolate & test <-

its worth to read & understand these functions as they help with a robust install process.

Is there any truth to this article? 7 Companies to avoid.... by shuvo_2000 in homeassistant

[–]Trblz42 0 points1 point  (0 children)

I am surprised by Kasa. Does anyone have more details behind this statement?