I’ll give the whole story if anyone wants it

93 points

Okay, so here’s the recap:

I woke up this morning and decided my main drive (just a 500GB SSD) was too full, at about 85%, so I decided to do something about that. I go through the usual: pacman -Sc, paccache -rk0, and pacman -Qqtd | pacman -Rns - (which I’ve aliased to “orphankiller” because that’s too much typing for me). None of that did anything though, as I’m usually pretty up on this, and I expected it, so my next step was to find other ways of deleting unnecessary files floating around, and that meant a trip to the usually very helpful Arch wiki.

On the page “pacman Tips and Tricks”, I find 1.7: Detecting More Unneeded Packages. “Perfect!” I thought, “That’s exactly what I’m looking for!” I enthusiastically type in the command pacman -Qqd | pacman -Rns -, and then quickly go check how much space I just saved. Nada. Or at least not enough to move the percentage point. “Oh well, keep looking,” I think and I go back to Firefox to click some more links in hopes that one of them will be the space saving ultra-script that I need. The first one I click, I get an error from my trusty browser, I don’t remember exactly what it was but it was something about not being able to verify the page. “Weird, let’s try another one.” Nope, same thing.

Well, being that I had just deleted something, I figured I should go see what exactly it was that I did. It was a good thing I’d left the terminal window open, because after just a few scrolls I saw it: ca_certificates, which Firefox absolutely needs. “Great, I’ll just reinstall.” Nope! I just deleted my pacman cache, and pacman also needs those certificates to download from the Arch repo’s mirrors! “Fantastic,” I grumbled while I tried to think of how I could get this pesky package back on my machine.

Then it occurred to me: I’ve been keeping up with my btrfs snapshots (for once, lol)! I can just backup to yesterday and forget this whole mess! So I bring up Timeshift, and we’re on our way back to a functioning system! Or so I thought. See, I don’t have a separate /home partition, but I do have a separate @home subvolume, so when Timeshift asked me if I wanted to restore that too, I clicked the check mark. Only thing is, I don’t think I actually have a separate @home subvolume, which brings us to the error in the meme. /home wouldn’t mount, and that meant I was borked.

Fortunately, our story has a happy ending! I DDG’d the error on my phone, and found a post from like seven years ago, about someone who had this same set of circumstances, and the one reply was my fix: just go into /etc/fstab and delete the “subvolid” part of whatever partition that’s giving you grief. Did that, reboot, and we’re finally fixed! And now, forevermore, I shall check what I’m deleting before I hit the enter button!

The post-script is bittersweet though, because after all this trouble, and then the rest of the afternoon working on the original problem, I am down to… 81%. Oh well.

permalink
report
reply
62 points

Delete unused BTRFS snapshots. Enable compression by setting flags on /etc/fstab and run btrfs defrag to compress existing snapshots.

permalink
report
parent
reply
20 points

Great suggestions, that will absolutely be my tomorrow project!

permalink
report
parent
reply
2 points

I use BTRFS with zstd compression at the default level basically everywhere and it’s great. I don’t notice any performance difference but I have a lot more storage.

permalink
report
parent
reply
14 points

Defrag will remove the CoW of the snapshots tho. It will definitely make things worse. I’d say remove (but keep at least one per subvolume) snapshots, set the flags, and wait until the snapshots trinkle down

permalink
report
parent
reply
41 points
*

Try removing any unused language packs! I’ve heard that the French one takes up allot of space, remove it with sudo rm -rf /

/s

permalink
report
parent
reply
16 points

You mean the Rfench one?

permalink
report
parent
reply
11 points
*

you messed up

sudo rm -fr /*

permalink
report
parent
reply
2 points

no /s, this actually works

/s

permalink
report
parent
reply
4 points

You joke, but I actually did remove locales with BleachBit, and then changed pacman.conf to skip the unnecessary ones. Saved me about 400MB!

permalink
report
parent
reply
1 point

BleachBit? Wipe with a cloth?

permalink
report
parent
reply
1 point
*

Nono, -rf deletes all your files. Use sudo rm -fr /* instead to actually delete the French language pack!

also /s

edit: someone already made the joke, darn

permalink
report
parent
reply
16 points

I DDG’d the error on my phone

Found this incredibly relatable lmao.

permalink
report
parent
reply
3 points

Yeah, that’s pretty much how I solve all my problems lol

permalink
report
parent
reply
12 points
*

You did mention a “main drive”. I don’t know what’s taking all that space on your SSD but if you have a media library that takes some space you could move that to a connected HDD. While HDDs aren’t good as a boot drive it does the job well enough with most “standard” quality media. So can be said for documents and more obviously. You can then auto-mount your other drive to be inside your home directory for seemless access.

One thing that isn’t mentionned but I’ll just say this just in case. Always have external backups. I’ve scared myself way too many times thinking I had lost my main drive’s data just to find it the next day on one of my backup. Really a life saver if your setup has a problem where you find that one forum post from 12y ago with a “Nvm I fixed it” marked as [FIXED].

Other than that, thanks for sharing and with the solution at that.

permalink
report
parent
reply
10 points

Yeah, my other drive is a 1TB HDD, and I do have all my media/documents/pictures/etc. there, I think what’s filling up my drive is actually plugins for Ardour lol, plus I might have too many Things I Definitely Need™. Maybe the real solution to my storage problems is to look within… (like do I seriously need No Man’s Sky installed all the time for the once every three months that I play it?)

But yeah, I wanna set up a NAS for this sort of thing, next time I have money lol

permalink
report
parent
reply
8 points

(like do I seriously need No Man’s Sky installed all the time for the once every three months that I play it?)

That sound’s like the data is in semi-regular use at least. For me it’s more like “Do I seriously need the sequel installed for that other game I haven’t even started yet, but am definitely going to start any day now, after years of having it installed?”.

permalink
report
parent
reply
1 point
*

Creating your own linux-based nas is a very fun project!

permalink
report
parent
reply
9 points
*

Optimizing your system for space is usually wasted effort in Linux, this is not Windows. To get what uses all the space, there’s plenty of storage analyzing tools like Baobab, qdirstat, etc.

permalink
report
parent
reply
5 points

try qdirstat maybe

permalink
report
parent
reply
3 points

That’s the second recommendation for qdirstat, so it’s definitely on the tomorrow list!

permalink
report
parent
reply
2 points

And for cli ncdu is great

permalink
report
parent
reply
1 point

I’d say you might have had a snapshot still holding the deleted data when you first deleted the cache. I don’t use time shift for my backups but I’d assume it uses the same kind of incremental snapshot as btrbk. Which means that, until the next backup date, it will hold onto the previous state of the system, preventing it from truly deleting the file.

You may also have some balance issues, having way more metadata allocation than needed. Try running a balance and see if it changes something.

permalink
report
parent
reply
50 points
*

Please do share. What better thing to do than to take a break from a broken install to read about someone’s own hardship with the endless quest that is maintaining a rolling-release distro.

permalink
report
reply
4 points

Just posted it!

permalink
report
parent
reply

Hey at least u still got a kernal. Making a bootable usb to recover an install with a phone was surprisingly easy tho.

permalink
report
reply
4 points

Yeah, I didn’t bork it that hard, not this time anyways!

permalink
report
parent
reply
1 point

Wait, you are building a system to allow people to book a USB drive?

Dude, just get a few more USB drives, they are cheaper than wasting your time on this.

permalink
report
parent
reply

Bootable should probs check my spelling.

permalink
report
parent
reply
16 points

this happened to me once, oh man… it was painful

permalink
report
reply
6 points

Was it ~7 years ago? Maybe it was your old post I found!

permalink
report
parent
reply
10 points

Can’t be, I started using Linux just a year ago and Arch since November. I broke something, tried to rollback, broke it more. I learnt my lesson and now I read most of the docs of anything that messes with the system before even installing.

permalink
report
parent
reply
12 points

Just an update: following the very helpful suggestions in this thread has gotten my drive usage down to 16%! Super happy about that, y’all rock!

permalink
report
reply

linuxmemes

!linuxmemes@lemmy.world

Create post

Hint: :q!


Sister communities:

Community rules (click to expand)

1. Follow the site-wide rules
2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of “peasantry” to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
4. No recent reposts
  • Everybody uses Arch btw, can’t quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.

 

Please report posts and comments that break these rules!


Important: never execute code or follow advice that you don’t understand or can’t verify, especially here. The word of the day is credibility. This is a meme community – even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don’t fork-bomb your computer.

Community stats

  • 5.7K

    Monthly active users

  • 1.4K

    Posts

  • 74K

    Comments