frongt
@frongt@lemmy.zip
- Comment on Part 3: They said a phone can’t run without a battery. Unfortunately, Pettyl didn’t get the memo. 1 hour ago:
Something weird is going on with votes. Idk if it’s just me or a federation problem.
- Comment on Part 3: They said a phone can’t run without a battery. Unfortunately, Pettyl didn’t get the memo. 7 hours ago:
No more than any other electrical device.
- Comment on how do you manage your server? 7 hours ago:
At least you have logging!
- Comment on Part 3: They said a phone can’t run without a battery. Unfortunately, Pettyl didn’t get the memo. 10 hours ago:
It’s something about how the charging circuitry is constructed. I’ve asked a handful of electrical engineers about it but they’ve never given me a good answer. My guess is that it’s easier/cheaper to design and build a circuit that only powers the phone off the battery, and only uses DC to charge the battery.
- Comment on [META] Should [AIP] also apply for projects not from the author ? 19 hours ago:
If it promotes the project, it’s a promotion, and falls under the rules about AI.
- Comment on Update: I turned my old Motorola E5 Play into an actual WordPress server 21 hours ago:
You should put a webcam showing the server log scrolling on the phone screen. Sanitized of any sensitive info, of course.
- Comment on DC UPS for router? 1 day ago:
What router? 12v5a is 60w max, which is not an unreasonable amount of power. A 1500va UPS should power it for like two hours or more.
You could easily wire it up to something like that. Take the power cable, cut off the wall wart, connect the positive wire (usually red, could be white) to the positive terminal, the negative to the ground terminal. Cut off the head of a power lead, connect the live, neutral, and ground to their terminals on the AC side. Plug your battery in, the power lead into the wall, and you’re done. Check everything with your multimeter before actually wiring it up if you’re not sure. You do have one and know how to use it, right?
- Comment on old.lemmy.zip is down 2 days ago:
Marked as “investigating”.
- Comment on The Nightmare of Migrating from Lightroom CC to Immich [Adobe doesn't make it easy] 4 days ago:
Yes, it does.
- Comment on Feasibility & sanity check: Scaling a P330 Tiny to a 3-node Proxmox cluster 4 days ago:
Keep in mind you can’t do a migration with device passthrough, even if the VM is shut down.
I use zfs sync every 15 minutes for my replication. No issues.
- Comment on Where to start with setting up my own server? 5 days ago:
You can run stuff on a little GPU, IGPU, or even just a CPU. You’ll be limited by RAM/VRAM, and obviously it’ll be slower, but it’ll work.
- Comment on Where to start with setting up my own server? 6 days ago:
Yup, proxmox is great.
Note that you can’t (or rather, shouldn’t) run docker containers on proxmox. Most people run a vm and then docker inside that. And yes, I use Debian for it
You can give proxmox a docker container reference, but it’ll download and convert it to LXC, which means you can’t update the container. You’d have to update the container’s os and the app manually, or redeploy the container and reattach the storage.
- Comment on please recommend a simple selfhosted photo gallery 6 days ago:
Immich isn’t complex, and I don’t think it requires a separate database.
- Comment on Turning an old Pixel 3a XL into a fully offline, battery-powered web server with postmarketOS & Lighttpd 6 days ago:
offline
web server
huh
- Comment on Letsencrypt is under US jurisdiction. Is there a free-er alternative? 1 week ago:
- Comment on Fitting a server with desktop hardware in a 1U rack mount chassis 1 week ago:
Yeah that should work. Servers usually live in a cooled server room and run their fans full speed. If you can do that, you’ll be fine.
- Comment on How do you manage PHP edits across application upgrades? 1 week ago:
See if they want to upstream those changes.
- Comment on Is Authelia enough without fail2ban or crowdsec? 1 week ago:
Security works in layers. You don’t know if there’s a vulnerability in Authelia.
- Comment on Finally have the stream from my HikVision, now the challenge of Frigate 2 weeks ago:
I have the same setup. Run ov on the igpu, works great.
- Comment on [Question] Public-facing Wiki 2 weeks ago:
Does it need to be self-hosted? Having someone else manage the infrastructure is a huge load off your plate.
- Comment on Hosting external services 2 weeks ago:
A reverse proxy is just for convenice of stuff like hostnames and ssl termination. It’s not a security layer.
The proper way to do it would be to have your public stuff in a DMZ , if untrusted users (i.e. could have malware on their device) are going to access it.
Personally I use Netbird and host a tiny server in the cloud, which a local node connects to, to avoid NAT or firewall rules. Since it’s self-hosted, there is no user limit.
- Comment on Needed to replace an older server while on a budget. Went for a rackmount chassis with "normal" ATX hardware inside 2 weeks ago:
You can get bolt-on products like jetkvm, or build a pikvm
- Comment on AI bot hacking/scraping Home Assistant 2 weeks ago:
Welcome to the Internet. If it’s exposed, people and bots are going to be banging on it.
- Comment on Any external NPU that can be hooked to a proxmox miniPC? 2 weeks ago:
Agreed. OP should probably upgrade to a bigger case and discrete graphics card.
- Comment on Any self-hostable alternative to playit.gg for easily exposing local game servers to the public internet? 2 weeks ago:
It looks like a VPN, just reskinned as-a-service.
If manual Wireguard is giving you trouble, try Netbird.
- Comment on My Homelab Got Hacked - A Postmortem – Phunky Cafe 2 weeks ago:
The VPN service is open to the Internet. But it’s only one service, versus however many things you are running behind it.
- Comment on QBittorrent breaks out of sandbox to commit crimes 2 weeks ago:
The hell are you talking about
- Comment on Podman: Issues with multiple users running containers simultaneously 3 weeks ago:
That’s the thing about computers, they do exactly what you tell them.
sudo echoworks, but the pipe and the redirect are interpreted by the bash shell you’re in, which isn’t being run with sudo.You should also know that echo is a bash shell builtin, so the echo you’re running with
echoandsudo echoare two very different things. - Comment on Podman: Issues with multiple users running containers simultaneously 3 weeks ago:
Shell into the container and find out.
- Comment on Podman: Issues with multiple users running containers simultaneously 3 weeks ago:
“/usr/share/nginx/html/index.html” is forbidden (13: Permission denied)Does the user have permission to that file?