Debian is still the best at being Debian. I rate it the least likely to give me any unpleasant surprises.
kbal
I’d appreciate it if everyone could just stop burning fossil fuels, please. Thank you for your cooperation.
- 4 Posts
- 205 Comments
Mostly I just install Skyrim mods manually because I’m insane I guess, but for some games I like to run Mod Organizer 2 under proton. Your whole linux filesystem can be made accessible to windows programs, not sure if it is by default. But anyway since we’re talking steam games here the game itself normally will be in the same place as usual, as far as windows programs know.
kbal@fedia.ioto Linux@programming.dev•Fedora's FESCo To Decide Whether To Replace Upstream X.Org Server With XLibre Fork8·21 days agoIf they go through with this I’ll switch to Hannah Montana Linux.
kbal@fedia.ioto Linux@programming.dev•[blog post] what it's like to live with as much foss software as possible9·21 days agoYou’re not really living with as much free software as possible until you’ve installed all of the 103818 packages in debian.
#!/bin/bash # Recursively rename everything in the current directory as necessary # to make it match the case of filenames in Skyrim’s “Data” directory,
from=`pwd -P` to="${HOME}/.steam/debian-installation/steamapps/common/Skyrim_1.5.97/Data" tmp="/tmp/skydata_index" filez="/tmp/skydata_from" IFS=' ' match_case() { cd "$2" find . | grep -v '^[.]$' > "$tmp" cd "$1" find . -maxdepth 1 | grep -v '^[.]$' > "$filez" for j in `cat $filez`; do if ( grep -i "^${j}$" $tmp ); then name=`grep -i "^${j}$" $tmp | head -1` if [ "${name}xx" != "${j}xx" ] ; then mv "$j" "$name" fi fi done # going recursiv find . -maxdepth 1 -type d | grep -v '^[.]$' > "$filez" for j in `cat $filez`; do if ( test -d "${2}/${j}" ) ; then match_case "${1}/${j}" "${2}/${j}" fi done } match_case $from $to rm $tmp $filez
Hm, someone claiming to be Vaxry says it’s real, it’s not April fool’s day, the link is to the domain that’s on their github page, it’s still up however many hours later… well that was unexpected.
(Apparently it’s Dave Cutler, who wikipedia reminds me is the crazy VMS guy “known for his disdain for Unix.” Apologies to both of them.)
Is that Donald Knuth? If so, “three guys taking a photo with Donald Knuth” might be a better title.
True enough — but for those few who enjoy such things I must point out that debian makes kernel builds very easy to do. When mesa gets too old there will usually be a backport.
Come on debian, maybe we can make it back into the top 5 when trixie gets an official release.
kbal@fedia.ioto Technology@beehaw.org•Another Dumb Electrical Code Change Could Ban DIY EV Charger Installs4·25 days agoI mean it’s better than nothing I guess but that is not what I’d call “freely available.” In addition to requiring that you use their shitty online viewer, it appears to require users to sign in to an account even to do that. It’s directly admitted on the website that they make it unusable in this way specifically because they rely on the revenue from selling real access to people who need it.
kbal@fedia.ioto cybersecurity@infosec.pub•Hackers Can Hide Images in Text Data and Embeds Directly into DNS TXT Records1·29 days agoWhy would anyone want to do that? Wouldn’t it be more fun to hide your super-secret image in the innocuous-looking threads dot net profile text of hundreds of users?
kbal@fedia.ioto Linux@programming.dev•What is your most useful Linux app which others might not know about (please don't just give the name but a link and why it is good for you) ?5·1 month agoautokey — a recent “autohotkey” sort of thing for linux. It comes to mind since I recently had to find a replacement for the one I’d used previously which died of bitrot. Mostly I just use it for app-specific key remapping for Firefox so that I can disable its ^W which I only ever hit accidentally when it was possible.
kbal@fedia.ioto Free and Open Source Software@beehaw.org•This page on fsf.org takes you to google.com when you click on an unrelated image4·1 month agoYep. It sends me to fsf.org. If the link goes here or anywhere else and such things bother you, fix your “referer” settings.
kbal@fedia.ioto Linux@programming.dev•GNOME introducing stronger dependencies on systemd209·1 month agoGNOME continues its long journey from being the one-time linux standard to a occupying a quirky little niche for masochists and corporate IT departments.
kbal@fedia.ioto Linux@programming.dev•Xlibre, a new fork of the X.org X11 server, announced123·1 month agoThis would’ve been great news to hear about if not for the stupid opinion about DEI being included to completely undermine any faith we might’ve had in the competence or judgement of the person responsible.
kbal@fedia.ioto Linux@programming.dev•Linux Kernel 6.14 Reaches End of Life, It’s Time to Upgrade to Linux Kernel 6.1511·1 month agoI am a debian user, and was just wondering whether to try 6.16 now or wait until next week.
kbal@fedia.ioto cybersecurity@infosec.pub•US infrastructure could crumble under cyberattack, ex-NSA advisor warns12·1 month agoThey’ve been warning us about the dangers of a Cyber Pearl Harbor since 1991 but I’m not too worried: Computer systems have become much more flaky and unreliable than they were then, so we’re much better prepared for none of them working.
kbal@fedia.ioto Linux@programming.dev•My week with Linux: I'm dumping Windows for Ubuntu to see how it goes7·1 month agoTo counterbalance the dryly pragmatic lack of enthusiasm for software freedom shown in this article, here’s another bit of writing from a recent covert to linux with fewer technical details but a more emotionally satisfying approach: https://alisonwilder.com/not-the-linux-audio-post-you-want/
Worst of all, root access is often granted to humans — a species known to be vulnerable to the most idiotic phishing scams you could imagine.