Advanced Search
Search Results
168 total results found
Updates
sudo apt update sudo apt autoremove sudo apt clean deborphan # Install this package management tool with sudo apt install deborphan sudo reboot deborphan ist ein Programm, das auf einem Debian System nach verwaisten Paketen sucht. Wird ein Paket gefun...
Free up Disk Space – Clear Systemd Journal Logs
Free up Disk Space – Clear Systemd Journal Logs in Ubuntu 20.04 Going to free up Ubuntu system disk space? Try clearing the systemd journal logs, it may free up a few GB of space. By using the Disk Usage Analyzer tool, I found that /var/log/journal tak...
Installationanleitung 2
The first thing to do is open a command line on your Ubuntu system and execute the following snap command to install MicroK8s: sudo snap install microk8s --classic Then, execute the following commands to configure Ubuntu’s ufw firewall to allow communica...
Reset
Als Administrator ausführen devenv.exe /resetsettings This command will reset Visual Studio to its default settings. devenv.exe /resetuserdata This command will reset Visual Studio's user-specific data, which includes settings, customizations, and extensio...
Default Page Editor
Default Page Editor The default editor in BookStack is a ‘What You See Is What You Get’ (WYSIWYG) editor. The usage of this editor is similar to typical word-processing applications such as Word or Google Docs. Editor Shortcuts The following shortcuts are a...
Funktionstest
microk8s status microk8s kubectl get services -n kube-system $ microk8s kubectl get all --all-namespaces
Debug - launchSettings.json
Entschuldigung für das Missverständnis. Es scheint, dass die Option zum Erstellen eines Bridge to Kubernetes-Profils direkt in den Projekteigenschaften von Visual Studio 2022 nicht verfügbar ist. Du kannst die Bridge to Kubernetes-Einstellungen jedoch weiterhi...
Dashboard - TimeOut
kubectl -n kube-system edit deployments kubernetes-dashboard - --token-ttl=0 spec: containers: - args: - --auto-generate-certificates - --token-ttl=0
Delete more images by Name
microk8s ctr images rm $(microk8s ctr images ls | grep 'IMAGENAME')
Delete Image from Registry
Jedes Repository kann gelöscht werden, indem Sie auf die Shell des Containers„docker exec -ti --privileged [Repository-Name] bin/sh“zugreifen und anschließend auf „/var/lib/registry/docker/registry/v2/repositories/“ zugreifen und den Ordner löschen mit dem Rep...
Key auslesen
wmic path softwarelicensingservice get OA3xOriginalProductKey
Secrets erstellen
Version1 kubectl create secret generic SECRETSNAME --from-file=FILENAME Version2 kubectl create secret generic SECRETSNAME --from-file=.FILENAME --dry-run=client --output=yaml > SECRETSFILE.yaml kubectl apply -f SECRETSFILE.yaml
kubectl - Commands
Get a Shell to a Running Container kubectl get pod kubectl exec --stdin --tty PODNAME -- /bin/bash
AssemblyVersion change
c# \[assembly\: AssemblyVersion\(\"\d{1,}\.\d{1,}\.\d{1,}\.\d{1,}\"\)\] [assembly: AssemblyVersion("2023.6.23.1015")] \[assembly\: AssemblyFileVersion\(\"\d{1,}\.\d{1,}\.\d{1,}\.\d{1,}\"\)\] [assembly: AssemblyFileVersion("2023.6.23.1015")] Dieser Cod...
DNS-Wildcard
Login to your pi-hole and go to /etc/dnsmasq.d/Create a new file, lets call it 02-my-wildcard-dns.confEdit the file, and add a line like this:address=/mydomain.lab/192.168.1.20Save the file, and exit the editorRun the command: service pihole-FTL restart
openssl - selfsign - certificate
To create a self-signed PFX certificate using OpenSSL, you can follow these steps: 1. **Generate a private key**: You can generate a private key using the `openssl genpkey` command. Here, I'll generate a 2048-bit RSA private key and save it to a file named ...