

Do you really need OPNsense? Buying a OpenWrt capable router would save your money, place and silence.
Do you really need OPNsense? Buying a OpenWrt capable router would save your money, place and silence.
Well, I don’t use proxmox, however docker coexists with libvirt and other virtualization systems. If there are overlapping networks that docker ant proxmox attempt to manage, they are configurable.
Snapshotting in docker is as easy as docker commit
. After that you can back it up with docker save
. Then move to another host, but not without downtime.
However normally you need to backup/move only volumes attached to containers. If that’s not the way how you like to organize your services, you likely don’t need docker.
What’s the purpose of running container in a container? Why not install docker on your host machine?
I meant software RAID of course. Hardware RAIDs just cause headacehes, but fake RAIDs that are built into motherboards are a real nightmare.
Building RAID on top of SSDs is an answer.
Can you connect with sftp
? sftp myname@192.168.68.137
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 #
).
skip the following substitute command if the line contains an http link in markdown format
Why you assume there’s only one link in the line?
Also, you perform substitutions in the whole URL instead only the fragment component.
Removed by mod
Bad advise for sed. regex101 doesn’t support POSIX regexes, so you are unable to get the same results as with sed
.
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.
With fail2ban single bot behind a NAT can make the site unaccessible for all users behind that NAT.
What does the locale
command say? Have you tried to change a font?
Disable systemd-resolved.service? Uninstall systemd-resolved?
Every day in my case, except holidays.
#!/bin/sh printf 'ABC %s: ' "$(date --rfc-3339=date)" | xclip