Goodbye Reddit, Hello Lemmy

  • 0 Posts
  • 8 Comments
Joined 9 months ago
cake
Cake day: January 6th, 2024

help-circle




  • Wehrpflicht ist halt so Rückständig. Zu irgendwas gezwungen werden, ist einfach nicht mehr Zeitgemäß. Wenn man Volljährig ist, ist man die zwänge los. Gut die Berufsschulpflicht endet nicht zum 18., sondern erst zum Ende des Schuljahres, wenn ich noch richtig informiert bin. Erst wenn ich was will, muss ich auch was geben. Will ich kein Geld vom Amt, muss ich mir auch keine Arbeit suchen usw. Das Militär ist halt auch echt nicht gerade populär. So auf Krieg hat nicht jeder Bock und auch mit dem Unterordnen nicht. Und dann als Ersatz irgendwelche Arbeiten verrichten, auf die man kein Bock hat?

    Wenn man wieder Leute braucht, sollte man einfach ein attraktiveres Angebot machen. In den USA wird ja einem durchaus die Schulbildung bezahlt. Man könnte hier auch was ähnliches machen. Wohnung, Führerschein, irgendwas lässt sich bestimmt finden, was die jungen Leute hinterm Ofen her holt.


  • Docker is amazing but not needed. You can compare it to a simpler VM. You can take a docker and run it on any machine. You have an environment that is separate from your host and you and the container can only access it via defined points (volumes and ports).

    Imagine you need to run a 2nd Mumble Server. I never set on up but its often that a 2nd instance is not that easy. With docker its easy. The only difference is that you need to use different ports, when you have only one network access or you use a reverse proxy. You can create a 2nd instance to test stuff, without interrupting your productive system. Its a security benefit, because its isolated to some degree and you can remove one easily.

    I started using it with MSSQL Server, because I hated how invasive it is on a windows machine, especially I just needed it temporarily to do stuff with it. I’m not a microsoft admin and I know that Servers from Microsoft are a different level. Docker allowed me to start and stop it and remove it very easily. After that I started using it for a lot of and brought my NAS on the next level.

    Also one thing worth mentioning are Linux Containerx (LXC). They are in Proxmox but I have less knowledge. It feels more like a full VM than docker but uses less resources. This is the reason why containers in general are more popular. They are less resource hungry than a full VM but have some benefits than running everything on one machine. LXC feels more like a full system, than docker. With docker you rarely get into the system. You may execute some commands, like a create user command or a one time job but don’t access it via a shell from the inside (its possible). LXC on the other hand, you use the shell.


  • Then use a dummy public repo. You don’t get the nice integration. We used Mantis Bugtracker at work for quite some time but switched to Gitea (a selfhosted Github clone) and are trying to get our testers to use it more.

    Also you should keep one thing in mind: needing an additional account, might stop people to use it. With Github I contribute for even smaller ideas. When I need to make an account first, I wont do it. Or when they want to use Discord. I do have Discord but come on…


  • Nextcloud auf meinem Remote Server. Mein Smartphone lädt es via Auto Upload hoch. Mache das seit über 10 Jahren so, damals noch über die Dropbox, weil mir nach dem Urlaub, wo ich die Fotos von der Micro-SD runter holen wollte, die SD Karte kaputt gegangen ist. Mein PC synchronisiert auch zur Nextcloud hoch. Zusätzlich dazu, läuft das Server Backup auf mein NAS Zuhause. Mein PC sichert auf ein Netzwerklaufwerk auf mein NAS, welches dann wieder auf die Nextcloud gesichert wird. Alle wichtigen Daten sind also so mindestens 3 mal vorhanden, zum Teil auch öfters.

    Einzig was ich noch suche ist eine gute Option für eine Cold Archivierung. Mein NAS hat 12TB an Speicher belegt, wovon vieles nicht im Backup ist, da nicht wichtig und auch durchaus auch mit entsprechendem Zeitaufwand wieder zu beschaffen ist. Ich habe noch keine Software gefunden, die mitschreibt welche Dateien bereits archiviert sind, die hoch komprimieren kann und nette Pakete schnürt, die dann auf entsprechenden Medien platz findet. Wäre auch praktisch wenn man ein entsprechendes Paket dann erneut schnüren kann, wenn es notwendig ist. Notfalls würde ich so etwas auch selber schreiben, aber ich wüsste noch nicht wie ich das mit dem Packen am besten hin bekommen könnte. Wahrscheinlich einfach machen und bei kleineren Dateien dann einfach so lange hinzufügen, bis das Limit erreicht ist.