Thinkpads are not what they once were. I finally gave up on them, moved over to a Framework, and haven’t regretted it.
Thinkpads are not what they once were. I finally gave up on them, moved over to a Framework, and haven’t regretted it.
I see you have yet to meetmy old friend Debian, who was supporting i386 until 2 weeks ago, and includes a much broader library of softwate than Microsoft has ever maintained.
Daily driver here. Stable for servers, testing for workstations.
Debian Testing isn’t as stable as Stable, but has been far more reliable than anyone else’s desktop releases. I’m also not a fan of Fedora and others’ policy of ending support on the day of a new release.
If for some reason you decide to hold back on an upgrade of Testing, you’ve still got five years of patch support coming. And if I do want to live on the bleeding edge, there’s always Sid (also called Unstable). That’s where you’ll run into the kind of instability you can expect from a rolling release.
My favorite will probably always be Gentoo, but I don’t always have time for that hobby.
Steal? Microsoft and Apple are the bad guys!
But it would not work on older non-GNU versions of tar.
GNU introduced the “–foo” style long options, and it was a long time before Unix versions began adopting them.
Not everyone that disagrees with a law is in a position to immediately change it.
That wasn’t luck - it was best practice backup strategy.
Tell me you’re bi without telling me you’re bi
Nah. Replacing the kernel is probably planned for the next point release - it’ll just be GNU/systemd
It doesn’t break apt, Canonical just broke their version of apt just to prefer snaps now.
FTFY
Only reason it wouldn’t work is Canonical killing the .deb package. That was an unforced error. So no, still not a good idea.
Nope - it was Unix not Linux. The minus makes the command invalid on many Unix versions of tar (though most modern BSD versions allow it)
Sorry, it was Solaris - you just blew it up (the minus is invalid on many Unix versions of tar)
For a privacy friendly OS, surprised nobody has mentioned Freedombox
It’s designed explicitly for your use case, along with an easy path to other self hosted services. When you’re ready for more than it offers through the web interface, it’s a full Debian install under the hood - so you can install whatever you need to. Privacy friendly and super stable, with smooth upgrades to new releases and security updates for old versions several years after the new one is available.
As far as hardware, your old computer is probably more powerful than a Pi and can support more drives, but the Pi will be more power efficient. As others have mentioned, if you care about your data long term then backups are a must, so a separate NAS or a Pi with a large drive for backup storage is a good idea as well, whatever OS you choose.
kwin supports a tiling mode which it sounds like they’re already using, so … yes?
Probably because one of his alts was on dbzer0 and was banned for transphobia
There’s more truth to that than most people realize: Linux is only one kernel option in Debian:
Advice from a long time sysadmin: You’re probably asking the wrong question. ncdu is an efficient tool, so the right question is why it’s taking so long to complete, which is probably an underlying issue with your setup. There are three likely answers:
sudo find $(grep '^/' /etc/fstab | awk '{print $2}') -xdev -type f -exec dirname {} \; | sort | uniq -c | sort -nr | head
explanation
This command doesn’t give an exact file count, but it’s good enough for our purposes.
sudo find # run find as root
$( … ) # Run this in a subshell - it’s the list of mount points we want to search
grep ‘^/’ /etc/fstab # Get the list of non-special local filesystems that the system knows how to mount (ignores many edge-cases)
awk ‘{print $2}’ # We only want the second column - where those filesystems are mounted
-xdev # tell find not to cross filesystem boundaries
-type f # We want to count files
-exec dirname {}; # Ignore the file name, just list the directory once for each file in it
sort|uniq -c # Count how many times each directory is listed (how many files it has)
sort -nr # Order by count descending
head # Only list the top 10
If they are temp files or otherwise not needed, delete them. If they’re important, figure out how to break it into subdirectories based on first letter, hash, or whatever other method the software creating them supports.