Search
For a TUI solution: https://github.com/Syllo/nvtop Install it and type nvtop in a terminal.
If you are using KDE/Plasma, there should be a widget for the taskbar that shows GPU usage. Go to the same screen where you normally add widgets and look for a "system monitor" widget. In the confi...
I searched for "what is the most accurate lines of code counter linux", but didn't get relevant results. This tcount CLOC project says that it's somehow better than others ones. I don't really beli...
I have a TLS certificate, let's say codidact.pem (downloaded as in https://linux.codidact.com/posts/292251/292257#answer-292257). But when I view it the file it appears to be base64 encoded: $ cat...
I noticed that downloading all the pacman packages for a full system install takes a lot of time, so I want to create a systemd time that will periodically download them for me. That way, most of t...
I want the cd command to automatically change to the first directory that matches a fuzzy search, without prompting me to select between multiple options. This is what I've tried: cd() { loc...
How can I rescale the Linux virtual terminals (ctrl + alt + {f1, f2, f3, f4, f5, f6}), so that a high-resolution display doesn't make the letters too small? I'd like to use 1080 or even 720 resolu...
There's a easiest way to solve the problem that is you have to remove the file /home/istiak/ruby/qpixel/tmp/pids/server.pid. Then, you can run your server again. rm /home/istiak/ruby/qpixel/tmp/pi...
Yes! It's possible to install debian formatted file in Arch-Based Linux. You have to install dpkg at first. sudo pacman -Sy dpkg Then, you can install any package using dpkg. dpkg -i package.d...
Beginner: Assuming you have experience with Windows, my vote for best beginner Linux is the quaintly named Puppy Linux. It is a LiveCD distro. You just stick it on a CD or thumb drive, and boot ...
How one may unpack .zst archived on Ubuntu? I received .zst archive file and I am looking for a way to unpack it.
How does the init process play a role in the booting of Linux?
On Arch Linux, I installed albert (from AUR) and picom as the compositor. I am using i3 as the window manager. When I bring up the albert window, it is surrounded by the ghost of a window in the b...
If I have an email in EML format, how can I determine its spam status from the terminal? My mail provider appears to insert a X-Acme-Spam-Status header. It looks like X-Acme-Spam-Status: v=1; e=b...
You can try to search your shell's history for brew install. Every shell has its own history command, but for example on fish I can do history | rg brew install. (rg is https://github.com/BurntSush...
How to lookup user-id with the user's name? E.g. What's the UID of user linus?
When I run Kmail on i3, and then close it, it appears to continue running some stuff in the background. For example, I periodically get notifications about new mail from dunst, even though I have c...
You don't. sudo is for there for security purposes. If you alias it as sudo pacman than you can mess up without knowing. You can login as root su - to execute consecutive commands.
How to ignore server certificate when using ldapsearch command-line tool? Of course this isn't something you should be doing regularly, but it would be a handy asset for troubleshooting.
BTRFS is capable of spanning over multiple drives. How to add one more to an existing filesystem?
Add a new drive with the device command: # btrfs device add /dev/new-device /path/to/the/filesystem/youre/adding/to Then you probably want to balance the filesystem so that some data will actua...
I upgraded to WSL 2 because I discovered several instances online where people had run into issues with WSL and Solr together. This fixed the problem of Solr not starting. However, it triggered a n...
How to get the (index) digest of a remote container image with skopeo? So this would be your normal container image in a container registry. E.g. in docker.io
With the inspect subcommand, and you probably want to set a format to filter out all the other clutter: $ skopeo inspect --format='{{ .Digest }}' docker://docker.io/snipe/snipe-it:v6.3.4 sha256:...