This is a work-in-progress post. So far I have tried 3 DJ mixing software products. TL;DR: VirtualDJ wins, but it’s not really free Mixxx Free Open Source + Can handle any file format + Has up to 4 turnables – Very unintuitive UI, which makes it hard to build sets and analyze tracks for BPM…
Read ArticleNetcup zensiert den Begriff Hetzner
Ich wollte mich eben vorab erkundigen im netcup.de Forum über etwas, und habe 3 mal “Hetzner” geschrieben im Post. Das konnte ich nicht posten, denn das Wort Hetzner ist bei netcup zensiert. Total uncool, und ich werde meinen RootServer dort kündigen und auch keine weiteren Server bestellen dort. Geht garnicht sowas. #hetzner #netcup #zensur
Read ArticleWasser nach Apfel nicht ok
Wasser zu trinken, nachdem man einen Apfel oder mehrere Äpfel gegessen hat ist, noch wie vor, nicht ok und führt im schlechtesten Fall zu Durchfall. Man googlet ja oft verschiedene Dinge und AI, die Google und andere einsetzen, ist bekannt dafür zu lügen. Aber es ist nicht die AI, die in diesem Fall lügt, sondern…
Read Article2 machines with bridge devices and same mac problem
You’re using systemd, maybe you have cockpit installed and are creating a bridge on each host because you need them for libvirt virtual machines. One machine is your old workstation and you copied the filesystem to the new machine. But when you create a bridge you local machine suddenly receives the same IP your old…
Read ArticleHow to run gitea securely with snapcraft’s gitea snap on CentOS/Rocky/Alma etc
Install gitea snap
|
1 |
snap install gitea --channel=latest/stable |
Add user
|
1 |
useradd -r -s /bin/bash -d /home/git git |
systemctl edit snap.gitea.web.service
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
[Unit] After=mysqld.service AssertPathIsDirectory=/home/git AssertPathIsReadWrite=/home/git [Service] User=git Group=git Environment="GITEA_WORK_DIR=/home/git" "GITEA_CUSTOM=/home/git/custom" WorkingDirectory=/home/git ExecStart= ExecStart=/usr/bin/snap run gitea.web --config /home/git/app.ini Restart=always |
In app.ini
|
1 2 3 4 5 |
; ; Port number to be exposed in clone URL SSH_PORT = 22 ; ; ; ; The port number the builtin SSH server should listen on SSH_LISTEN_PORT = 2222 |
add firewall forward rule
|
1 |
firewall-cmd --permanent --add-forward-port=port=22:proto=tcp:toport=2222 --zone=public |