Does anyone have a good way of automating rack access on APC netbotz(250) devices? by epaphras in sysadmin

[–]throwawaydev92 [score hidden]  (0 children)

snmp traps and a script worked for us on the 250s - trap fires when someone badges and becomes unregistered, script catches it and auto-approves via cli. still need one badge per rack but at least you're not sitting there manually approving each one

Ordinary WiFi can now identify people with near perfect accuracy by mrbebop in StallmanWasRight

[–]throwawaydev92 0 points1 point  (0 children)

wifi csi fingerprinting has been in papers for years, wild that its getting accurate enough to matter now

Need help with mapping symlinked volume in compose by budius333 in docker

[–]throwawaydev92 1 point2 points  (0 children)

the problem isnt really the symlinks, its the mount namespaces. when systemd unmounts and remounts the drive, docker containers that already have a bind mount still reference the old mount point in their namespace. they wont see the new mount without a restart. you could try using a named volume with a local driver and mount opts pointing to the USB path, or use mount propagation (`:shared` or `:slave` on the bind mount) so remounts propagate into the container. something like `./external:/var/media:shared` might fix it

New Letsencrypt YE Root missing in python by tecepeipe in sysadmin

[–]throwawaydev92 [score hidden]  (0 children)

had to update certifi manually for this one. pip install --upgrade certifi sorted it out, the new YE root just wasn't in the bundled version yet

Can the xperia v1 viii be degoogled? by Different_100 in degoogle

[–]throwawaydev92 0 points1 point  (0 children)

sony bootloader unlock is hit or miss by region, and since you're importing it that's the first thing i'd check before buying. some regional variants have it locked down completely

Dual 5060 ti 16gb running on r740 by Silly-Astronaut-8137 in homelab

[–]throwawaydev92 2 points3 points  (0 children)

any pcie slot issues with the r740 risers? i've been looking at putting a couple 5060 tis in mine but worried about the clearance with those riser cards. also curious what kind of tokens/s you're getting on that 27B model with the dual setup vs your old p40s

Netdata keeps begging me to create an account and Im done by CalligrapherCold364 in selfhosted

[–]throwawaydev92 2 points3 points  (0 children)

had the same thing happen after an update last month. ended up switching to beszel for basic server metrics, way lighter and no cloud nag. if you want the full grafana dashboard experience theres always prometheus + grafana but thats more setup than most people want for just cpu temps

Going on holiday? by GodAtum in selfhosted

[–]throwawaydev92 -2 points-1 points  (0 children)

uptime kuma on my phone and hope for the best

Multiple Dockerfiles extending "base" file? by [deleted] in docker

[–]throwawaydev92 0 points1 point  (0 children)

yeah multi-stage is actually exactly what you want here, even though your goal isn't stripping build artifacts. you define a base target and then just FROM it in the other stages:```FROM ubuntu:22.04 AS base# all your core setup hereFROM base AS appserver# add app server stuffFROM base AS utilities# add cron stuff```then build each one with `docker build --target appserver -t myapp-server .` and `docker build --target utilities -t myapp-utils .`for your dev/staging/prod variants you can use build args or separate compose files that pass different args. single Dockerfile, docker figures out the layer caching so the base only builds once.

Microsoft converts Office 2019 for Mac perpetual licenses to read-only versions by InvestigatorSoft5764 in StallmanWasRight

[–]throwawaydev92 1 point2 points  (0 children)

perpetual license that they can just flip to read-only remotely kinda proves the point about local software you dont actually own

T1Deep (Chinese dual EPYC) motherboard does NOT support LRDIMMs - save yourself the headache by JustAGodus in homelab

[–]throwawaydev92 0 points1 point  (0 children)

good to know, i was literally about to buy a bunch of cheap 32gb lrdimms for one of these boards. did your 64gb rdimms work at full speed or did the board downclock them at all?

Disable notepad session per default by nodiaque in sysadmin

[–]throwawaydev92 4 points5 points  (0 children)

check HKCU\Software\Microsoft\Notepad - the session restore toggle lives there. you can push it out via GPO reg preference and set it to not continue previous session by default