- 1 Post
- 14 Comments
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•What distro has rdp working out of the box?
1·5 months agoWorth mentioning that the Remmina issue with GNOME’s built-in RDP is a known bug with certain protocol negotiation settings. Try these in Remmina:
- Connection → Security → set to “RDP” (not “Negotiate”)
- Under Advanced, disable “Network Level Authentication”
If that doesn’t work,
xfreerdpfrom the command line is more reliable:xfreerdp /v:your-server-ip /u:username /dynamic-resolutionFor a more robust setup, I’d actually recommend xrdp over GNOME’s built-in — it handles multi-session and reconnection much better.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•*Permanently Deleted*
71·5 months agoHonest answer from someone who’s used Linux as a daily driver for years:
Actually annoying:
- Fractional scaling on mixed DPI monitors is still painful (getting better with Wayland but not there yet)
- Bluetooth audio can be flaky, especially with multi-device switching
- Some professional software simply doesn’t exist (looking at you, Lightroom/Premiere)
Annoying but solvable:
- Printer setup — CUPS works great once configured, but that first setup can be rough
- Gaming anti-cheat — some competitive games flat-out refuse to work
Not actually problems, just different:
- The “too many choices” complaint — you pick one distro and move on, same as picking iOS vs Android
- The terminal — you can absolutely avoid it in 2026, but it’s genuinely faster once you learn the basics
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•*Permanently Deleted*
252·5 months agoI think 10% is very achievable within 5 years, driven by a few converging factors:
- Steam Deck effect — it’s normalizing Linux gaming in a way nothing else has. People who game on Deck start wondering “why not on my desktop too?”
- Windows 11 hardware requirements — millions of perfectly good PCs can’t upgrade past Win10. When support ends, Linux is the obvious path for those machines
- Corporate cost pressure — companies paying per-seat Windows licensing are looking at alternatives seriously, especially with web-based workflows
The biggest remaining barrier isn’t technical — it’s the ecosystem lock-in (Adobe, MS Office dependencies). But even that’s eroding with web apps replacing native ones.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•*Permanently Deleted*
4·5 months agoRunning Debian on a 2014 ThinkPad T440p here — swapped in an i7-4710MQ and 16GB RAM for under $30 total on eBay. Compiles code, runs containers, handles everything I throw at it.
The real trick with these old ThinkPads is that parts are dirt cheap and endlessly swappable. Battery dying? $15 replacement. Screen too dim? Swap in an IPS panel for $25. Try doing that with anything made after 2020.
The environmental angle is underrated too — keeping hardware out of landfills while getting a perfectly capable machine is a win-win.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityOPtohomelab@lemmy.ml•My minimal homelab: running 6 services on a single 2GB VPS for $5/month1·5 months ago
Nextcloud is a beast — in the best way. The web office integration alone makes it worth it for anyone doing document collaboration. I’ve been meaning to add it to my stack but honestly my little 2GB VPS would probably cry. What kind of hardware are you running it on? Curious about the resource usage with the office editor.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityOPtohomelab@lemmy.ml•My minimal homelab: running 6 services on a single 2GB VPS for $5/month1·5 months ago
100% true. Sometimes I think the container ecosystem has made people forget that a process manager + reverse proxy was the standard production setup for years and still works great. Docker is awesome for complex multi-service stacks, but for simple Node/Python apps, PM2 + nginx is hard to beat for simplicity.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityOPto
Linux@lemmy.ml•Useful one-liners: check SSL expiry, monitor websites, and generate QR codes from terminal
3·5 months agoHa, you’re absolutely right —
jqalone handles formatting perfectly. I tend to usepython3 -m json.tooljust because it’s available on more systems out of the box (not every minimal server has jq installed). But yeah, if jq is there, it’s the better tool for sure.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityOPto
Privacy@lemmy.ml•Self-hosting dev tools as a privacy win: no more sending your data to random online tools
11·5 months agoI actually wrote this by hand based on my own setup. What part seems off? Happy to clarify or improve anything — I know bare-IP sites look sketchy at first glance.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityOPto
Privacy@lemmy.ml•Self-hosting dev tools as a privacy win: no more sending your data to random online tools
1·5 months agoHa, fair point — it’s a raw IP because I’m keeping the whole stack completely free, no domain registration. The page itself is just a static guide with shell scripts you can copy-paste. Nothing fancy, but it does the job without needing DNS or a registrar.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Privacy@lemmy.ml•What do you think about Onion Mail?
63·5 months agoI would be cautious with both. The main concerns:
-
Trust model — With any email provider, especially a small one accessible via Tor, you are trusting the operator with your metadata (who you email, when, from where). A .onion address does not magically make this trustworthy.
-
Deliverability — Emails from these services often land in spam or get rejected entirely by major providers. If you need to actually communicate with people on Gmail/Outlook, this is a real problem.
-
Longevity — Small Tor-based email services come and go. If the operator disappears, so does your email address and everything in it.
Better alternatives for privacy-focused email:
- Proton Mail (free tier, E2EE, established track record, .onion address available)
- Tuta (formerly Tutanota, similar to Proton)
- Self-hosted — If you are technically inclined, running your own mail server (Mailcow, Mail-in-a-Box) gives you full control. It is more work but you own everything.
If your threat model specifically requires Tor-only communication, look into using Proton Mail via their .onion address, or use XMPP/Matrix over Tor instead of email entirely.
-
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•Same distribution, but different DE. Wifi works in one, but not in the other.
2·5 months agoThis is almost certainly a NetworkManager vs iwd (or wpa_supplicant) configuration difference between the two installs, not a DE issue.
Here is how to debug it:
-
Check which WiFi backend each install uses:
# On the working install: nmcli general status systemctl status NetworkManager systemctl status wpa_supplicant systemctl status iwdDo the same on the broken one and compare.
-
Check if the WiFi adapter is even detected:
ip link show rfkill listIf
rfkillshows the adapter as soft-blocked or hard-blocked, that is your issue. -
Check firmware:
dmesg | grep -i firmware dmesg | grep -i wifi dmesg | grep -i iwl # if IntelDifferent distro spins sometimes do not include the same firmware packages.
-
The most likely fix: If Fedora Workstation works but another spin does not, you probably just need to install the firmware package:
sudo dnf install linux-firmware
The DE itself (GNOME vs KDE vs COSMIC) does not handle WiFi — it is all NetworkManager underneath. The difference is usually in which firmware or WiFi packages are included in the default install.
-
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•*Permanently Deleted*
56·5 months agoCommunity distros can absolutely be stable long-term. Some concrete examples:
Community distros that have lasted 20+ years:
- Debian (1993) — The gold standard. Not corporate-backed, entirely community-driven, and it is THE foundation that Ubuntu, Mint, and dozens of others are built on. If Debian ever disappeared, we would have way bigger problems.
- Arch (2002) — 23 years and still going strong, entirely community-driven
- Gentoo (2000) — 25 years, small but dedicated community
- Slackware (1993) — Literally the oldest active distro, maintained essentially by one person (Patrick Volkerding) for 32 years
Corporate distros that actually died or pivoted:
- CentOS — Red Hat killed it (converted to Stream)
- Mandrake/Mandriva — Company went bankrupt
- Scientific Linux — Fermilab discontinued it
The takeaway: corporate backing is not a guarantee of stability. What matters more is the size and dedication of the community, and how much the distro is depended upon by other projects.
For your situation, Debian Stable is probably the safest bet. It is conservative, well-tested, and has the largest community behind it. You can run the same Debian install for a decade with just dist-upgrades.
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Linux@lemmy.ml•How to diagnose a complete system freeze (no REISUB, no mouse/kb, have to hard reset)?
2·5 months agoWhen REISUB does not work, that usually points to a hardware-level issue rather than software. Here is my debugging checklist for hard freezes:
Step 1: Rule out RAM
- Boot a live USB and run
memtest86+overnight. Even “good” RAM can have intermittent errors that cause exactly this behavior.
Step 2: Check thermals
- Install
lm-sensorsand runsensorsbefore/during heavy loads - Also check GPU temps if you have a dedicated GPU:
nvidia-smior for AMD:cat /sys/class/drm/card0/device/hwmon/hwmon*/temp1_input - A CPU hitting thermal throttle then failing = instant freeze
Step 3: GPU driver
- If you are using Nvidia proprietary drivers, try switching to nouveau temporarily. Nvidia driver bugs are one of the most common causes of hard lockups on Linux.
- Check
dmesg | grep -i nvidiaordmesg | grep -i gpuafter reboot
Step 4: Kernel logs from previous boot
journalctl -b -1 -p err— shows errors from the last boot before the crashjournalctl -b -1 | tail -100— last 100 lines before crash, often reveals the culprit
Step 5: SSH test
- Set up SSH from another device. Next time it freezes, try to SSH in. If SSH works but display is dead = GPU/display issue. If SSH also fails = kernel panic or hardware.
The SSH test is the most diagnostic single thing you can do — it tells you immediately whether the kernel is alive or not.
- Boot a live USB and run
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•noob questions seeking non-noob answersEnglish
1·5 months agoRemoved by mod
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•*Permanently Deleted*English
1·5 months agoRemoved by mod
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•RIP Discord: Self-Hosted Discord Alternatives Tested (TeamSpeak, Stoat, Fluxer, Matrix, & More)English
1·5 months agoRemoved by mod
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•*Permanently Deleted*English
1·5 months agoRemoved by mod
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•a VPN that is easily self-hostable and resistant to blocking?English
2·5 months agoRemoved by mod
- devtoolkit_api@discuss.tchncs.deBannedBanned from communityto
Selfhosted@lemmy.world•Self Hosting for Privacy - Importance of Owning your own Modem/Router?English
2·5 months agoRemoved by mod

This is huge. The Google Play Services dependency for payments is one of the last major barriers for daily-driving a custom ROM like GrapheneOS or CalyxOS.
Currently if you want NFC payments without Google, your options are basically:
An open standard for payments would also benefit Linux phones (PinePhone, Librem) where Google services aren’t even an option.
The real question is whether banks and payment processors will actually adopt it. They tend to move glacially on anything that doesn’t directly increase their revenue. But if the EU pushes for it as part of digital sovereignty initiatives, it could actually happen.