What process dares to use the swap
Well there are a few tools out there that can help and tell you that, or you do it like me, get really bored and fine tune a onliner that lists everything that is currently in swap.
Debian, Raspbian, CentOS und was ein Systemadministrator noch so von sich gibt
Well there are a few tools out there that can help and tell you that, or you do it like me, get really bored and fine tune a onliner that lists everything that is currently in swap.
It was time to get a move on switching to newer ansible versions. Newer ansible versions require newer python. But while switching you still want to keep the old stuff running on the older python version. I am not a python guy, so a colleague said to use venv (which he does) or virtualenv. Really … Weiterlesen
Wieso kein AppArmor? Na ja, eigentlich eine gute Frage die ich mir auch gestellt habe. Mal kurz ein paar Schritte zurück. Normalerweise verwende ich auf meinen privaten Servern ein reines Debian ohne AppArmore oder SELinux. Bei der Arbeit bisher CentOS und jetzt Alma mit SELinux. Eigentlich Unsinn, da wir mit SELinux um einiges sicherer Fahren. … Weiterlesen
Jeder kennt das, einmal im Jahr kommt das neue Zertifikat und mal wieder als pfx Datei. Mein Apache2 mag das Teil aber nicht also einmal umwandeln in was Verständliches bitte, sprich, pfx Zertifikat nach crt und key konvertieren. Am Besten das pfx erstmal in einen eigenen Ornder schieben und dann geht es schon los, fangen … Weiterlesen
You were transferring data from one location to another and stumbled across this one. Basically what it is telling you is that there is something wrong with the character sets. In other words probably different LANG settings from sending to receiving. If both sides are the same you need to ask yourself if the data … Weiterlesen
Es geht hier wohl primär um das sichern einer SD Karte wenn man sie für seine Raspi oder ähnliches nutzt, aber klar mit der SD Karte aus dem Photo geht das auch. Wir ziehen einfach eine Image (Abbild) von der Karte in einen File damit wir zu gegebener Zeit genau das wieder aufspielen können. Windows … Weiterlesen
Es gibt schon einige Anleitungen zu dem Thema und bei mir wird es auch nichts neues geben. Es muss auch nicht ProxMox sein, wer nur nach KVM direkt will findet hier auch was er braucht. Die Hauptschwierigkeit wird wohl sein die Daten vom ESXi runter zu bekommen, da der kostenlose ESXi nun mal ein paar … Weiterlesen
Nur eine kurze Notiz. Wer einen apache upgrade macht wird ab und an merken das einiges plötzlich nicht mehr stimmen kann. Die gewöhnlichen Dinge ausgelöst durch den Versionsunterschied leuchten jedem schnell ein, doch was wenn es trotzdem nicht läuft? apt-get install strace strace -f apache2ctl start … ganz ehrlich, das Ding spuckt den Bildschirm voll, … Weiterlesen
Well there are probably many ways and I have seen a few, let us keep it simple and use built in stuff as much as possible. Bash is for lazy people. #!/bin/bash read -p „Enter Path: “ NEWPATH MYPATH=${NEWPATH} echo ${MYPATH} Using this, the path can have a trailing slash and you have got it … Weiterlesen