Autor: Stefan
-
IP-Adresse vor dem Login anzeigen lassen (Ubuntu)
Die Datei /etc/issue editieren: Hier folgenden Code einfügen (eth0 ggf. mit dem Namen der gewünschten Netzwerkkarte ersetzen):
-
Ubuntu – Festplattenfresser feststellen
To investigate why the disk space on your Ubuntu server decreased significantly at a specific time, you can follow these steps: And also check system-wide cron jobs in /etc/crontab and the /etc/cron.* directories. This command finds files larger than 100MB modified in the last 2 days. Investigating disk space issues often requires correlating data from…
-
Serien und Videos
Bewertung nach Schulnoten Bis zum 04.11.2023 Netflix Note 3Der Untergang des Hauses Usher 05.11.2023 Netflix Note 1Alles Licht, was man nicht sehen kann 05.11.2023 Netflix Note 3Locked in Bis 06.11.2023 Prime Note 2Last Exit Schinkenstraße 06.11.2023 Prime Note 6, abgebrochenShotgun Wedding 06.11. – Prime Note 1Night Sky bis 22.11.2023 Disney+, Note 5The Changeling
-
EntityFramework.Core in eine .net Core Blazor WebApp integrieren
1. Install necessary packages: For a Blazor Server App, you’d typically manage the EF Core functionality in the Server project. So, make sure you are working in the Server project directory or set the Server project as the default project in the Package Manager Console (PMC) in Visual Studio. Using the NuGet Package Manager or…
-
HDD an Fritz!Box als TimeMachine Target
QUELLE: https://www.tutonaut.de/anleitung-time-machine-mit-fritzbox-nutzen/ Es muss nicht immer die teure NAS sein: Wer eine FritzBox von AVM besitzt, kann auch den Router mit ein wenig Bastelei als Time Machine-Laufwerk verwenden. Der Vorteil: Ihr braucht keine zusätzliche Hardware, von einer USB-Festplatte abgesehen. Die Lösung lässt sich mit wenigen Handgriffen einrichten. 1a. Externe Festplatte für Time Machine vorbereiten Um zu beginnen, benötigen Sie eine…
-
update npm on MacOS
Using NPM: To update Node using NPM, do the following: You can also manually download and install the latest Node version from the official website.
-
rsa private / publik key erstellen
To generate a private key and public key pair for SSH access on Ubuntu, you can use the OpenSSH utility called ssh-keygen. Here’s a step-by-step guide: Replace „your_email@example.com“ with your own email address or any identifier you prefer. This command will prompt you for the password of the remote user account. That’s it! You have…
-
How to Install Nginx as a Reverse Proxy and Use It to Run ASP.NET Core Blazor Applications
ASP.NET Core Blazor is a new web development framework that builds on the power of Razor and the performance of Core .NET. This article will show you how to install Nginx as a reverse proxy to make your Blazor applications run faster and more reliably. How to install Nginx as a reverse proxy There are…
-
How to host asp.net core 6 applications under Ubuntu
Schritt-für-Schritt-Anleitung zur Installation von ASP.NET Core 6 unter Ubuntu 1. Zuerst musst du sicherstellen, dass dein System auf dem neuesten Stand ist. Öffne ein Terminal und führe folgenden Befehl aus: `sudo apt-get update`. 2. Installiere die .NET Core SDK-Pakete, indem du folgenden Befehl ausführst: `sudo apt-get install dotnet-sdk-6.0`. 3. Um sicherzustellen, dass die Installation erfolgreich…
-
Installation und Konfiguration der Firewall ufw unter Ubuntu
Schritt für Schritt Anleitung zur Installation und Konfiguration der Firewall ufw unter Ubuntu 1. UFW installieren: Zuerst musst du UFW installieren. Dazu öffnest du ein Terminal und gibst folgenden Befehl ein: sudo apt-get install ufw. 2. UFW aktivieren: Nachdem UFW installiert ist, kannst du es aktivieren. Dazu gibst du folgenden Befehl ein: sudo ufw enable.…