Hey folks, just wanted to share a little project I worked on today – getting this neat little tool called btop up and running on my Linux machine. For those who haven’t heard of it, btop is basically a resource monitor, kind of like the ‘top’ command but way cooler and more informative.
So, first things first, I needed to download it. I went on Google and found out about different packages for different distributions, like ALT Linux, Alpine, Arch Linux, Debian, Fedora, FreeBSD, KaOS and so on. It mentioned something about “snaps” for Ubuntu, which are like, self-contained applications. But, I wasn’t really interested in those.
Getting My Hands Dirty
- I went straight to download the package that I needed for my distribution.
- There’s something called wget I used to download the file.
- And after downloading, I realized I should create a directory for it. Something like ‘mkdir -p btop-install/output’ got the job done.
After I created the directory, I used wget again to pull btop from its source.
Diving into btop
Once I had btop on my machine, I started playing around with it. Man, this thing is packed with features! I saw:
- A graph for network usage that scales automatically, which is pretty slick.
- It shows what your disks are up to, like, how fast they’re reading and writing stuff.
- There’s even a battery meter, which is super handy for laptop users like me.
- You can also pick different symbols for the graphs and set up your own custom views.
I learned that btop is coded in C++, and it’s kind of a successor to things called bashtop and bpytop. Fancy, huh?
Wrapping Up
And that’s pretty much it. Now I can use btop to keep an eye on how my system’s doing. It’s way more than just a basic monitor. It’s a fun tool. It’s got all these graphs and stats that make it easy to see what’s going on under the hood.
If you’re a Linux user and haven’t tried btop, I definitely recommend giving it a shot. It’s a cool way to see how your machine is performing.