Arch and its derivatives look like the trend
It’s because nobody writes “I use Debian BTW”.
Arch and its derivatives look like the trend
It’s because nobody writes “I use Debian BTW”.
mdam doesn’t work on either my Trixie or 26.04 install
What? Do you mean it is incompatible with Mac OS software RAID implementation? This does not mean it doesn’t work. You will also be unable to read your software RAID if you insert disks into hardware RAID device.
The current stable release is Debian 13. Choosing 12 is nonsense.
If you are choosing between Fedora and Debian, definitely go with Debian. Fedora evolves too rapidly for professional use, and its administration requires excessive effort.


I almost never use xargs. The most common case for it is find, but it is easier to use its -exec option. Also, with find your example is incorrect. You forgot that file names can contain special characters, the newline character in particular. That’s why you need to pass -print0 option to find and -0 option to xargs.
Have you tried NetBSD?
Don’t expect much difference between Debian and Ubuntu. I guess you just need to install a newer kernel package from backports.
What does dpkg --print-foreign-architectures say?
Are you serious? It’s just a window where text is printed. Use what your DE provides. Now I’m mostly on LXQt, so I use QTerminal. With tiling WMs I prefer urxvt because I don’t need builtin window splitting ans tabs. I can’t imagine what other features may I need.
Or, alternatively, [[:digit:]], and dont’ forget to add a quntifier + to match multiple digits. See documentaion for details.
awk '/^\/dev\/loop[[:digit:]]+/{print}'
The most interesting command for the Linux shell is known as Barmin patch.
I’m currently running mint cinnamon (how original, I know), and asking because i can’t seem to add mullvad-vpn stable repo.
What’s the problem? Mint is based on Ubuntu, use the corresponding Ubuntu repo (noble in case of Mint 22.1).


Paths are constant, only anchors are generated by forgejo.
You won’t get it here. Everybody will recommend his favorite distro.
IMHO the best would be to solve your problems in OpenSUSE. This is definitely possible. You really need to switch to another distro only if you feel youself uncomfortable with the release cycle, package management tools or packages present in the repo of your current distro.


I didn’t test this, but it will change the whole URL while changes are only needed in its fragment component (after the first #).
Removed by mod


NB: global substitution s///g is not applicable here because you need to perform new substitutions in a substituted text. Both sed regexp syntaxes (basic and extended) don’t support lookarounds that could solve this issue.


As I see, you’ve already got an answer how to convert text to lower case. So I just tell you how to replace all occurrences of %20 with -. You need to repeat substitution until no matches found. For such iteration you need to use branching to label. Below is sed script with comments.
:subst # label
s/(\[[^]]+\]\([^)#]*#[^)]*)%20([^)]*\))/\1-\2/ # replace the first occurrence of `%20` in the URL fragment
t subst # go to the `subst` label if the substitution took place
However there are some cases when this script will fail, e. g. if there is an escaped ] character in the link text. You cannot avoid such mistakes using only simple regexps, you need a full featured markdown parser for this.
Do you mean full text message body search or just headers (To/From/Subject etc.)? Claws Mail is very fast when searching in headers, but not in message bodies.