Search found 162 matches

by h3rb3rn
Fri 12. Mar 2021, 13:32
Forum: Betriebssysteme
Topic: Ubuntu vom proprietärern Snap Store befreien
Replies: 1
Views: 86398

Ubuntu vom proprietärern Snap Store befreien

aktualisierte Fassung vom 08.08.2023 Snap ist ein proprietäres Eigengewächs von Canonical. Snap deinstallieren snap list sudo snap remove <package> sudo rm -rf /var/cache/snapd sudo apt purge snapd -y; rm -rf ~/snap Zukunftige Neuinstallation von Snap verhindern Datei /etc/apt/preferences.d/nosnap....
by h3rb3rn
Fri 29. Jan 2021, 09:46
Forum: Zentrales Servermanagement
Topic: CheckMK RAW (CE) mit Nginx und Let's Encrypt unter Debian Buster
Replies: 0
Views: 73532

CheckMK RAW (CE) mit Nginx und Let's Encrypt unter Debian Buster

Fassung vom 28.01.2021 Anleitung für Debian 10 (Buster) Download Link https://checkmk.com/download?edition=cre&version=stable&dist=debian&os=buster Alle Schritte als root ausführen! su - cd /tmp; wget https://download.checkmk.com/checkmk/1.6.0p20/check-mk-raw-1.6.0p20_0.buster_amd64.deb...
by h3rb3rn
Sat 10. Oct 2020, 00:41
Forum: Spezielles
Topic: USB HDMI Grabber für OBS mit mjpeg Codec
Replies: 0
Views: 38202

USB HDMI Grabber für OBS mit mjpeg Codec

Aktualisierte Fassung vom 05.04.2021 Hinweis: Das Linux Header Paket ist in diesem Beispiel für die Ubuntu 20.04 LTS Installation und muss ggf. angepasst werden sudo apt install v4l2loopback-source module-assistant v4l2loopback-source linux-headers-5.8.0-49* cd ~; mkdir obs; cd obs; git clone https...
by h3rb3rn
Thu 7. May 2020, 08:48
Forum: Spezielles
Topic: OBS-Studio mit virtual Webcam für Video Calls
Replies: 0
Views: 40149

OBS-Studio mit virtual Webcam für Video Calls

Fassung vom 06.05.2020 Github Repository zum obs-v4l2sink sudo apt install obs-studio git qtbase5-dev cmake; cd ~; mkdir obs; cd obs; git clone https://github.com/CatxFish/obs-v4l2sink.git; git clone --recursive https://github.com/obsproject/obs-studio.git; cd obs-v4l2sink; mkdir build && c...
by h3rb3rn
Sun 3. May 2020, 14:26
Forum: VPN
Topic: Wireguard für Proxmox Cluster
Replies: 0
Views: 79010

Wireguard für Proxmox Cluster

Fassung vom 04.05.2020 Backport Repository für Debian Buster echo 'deb http://deb.debian.org/debian buster-backports main contrib non-free' > /etc/apt/sources.list.d/buster-backports.list; Wireguard installieren apt update; apt install wireguard wireguard-dkms wireguard-tools pve-headers reboot dkm...
by h3rb3rn
Sun 19. Apr 2020, 00:33
Forum: Webserver(dienste)
Topic: Jitsi Meet Server mit Grafana Monitoring installieren unter Debian Buster
Replies: 0
Views: 44181

Jitsi Meet Server mit Grafana Monitoring installieren unter Debian Buster

aktualisierte Fassung vom 14.08.2021 Native Jitsi Meet Installation unter Debian Buster https://jitsi.org/downloads/ubuntu-debian-installations-instructions/ Jitsi Repository hinzufügen wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add - sudo sh -c "echo 'deb https://d...
by h3rb3rn
Wed 1. Apr 2020, 22:11
Forum: Spezielles
Topic: Netzwerk Cam als Webcam nutzen mit VLC und FFMPEG
Replies: 0
Views: 40182

Netzwerk Cam als Webcam nutzen mit VLC und FFMPEG

Fassung vom 10.04.2020 OBS ist optional. Einfach VLC und FFMPEG reicht. Sobald der Dummy Videoadapter angelegt wurde erkennt z.Bsp. Jitsi Meet diesen als Kamera. Allerdings wird mit FFMPEG nur der Bildschirm gestreamt. Damit von der Netzwerk Kamera das Bild zu sehen ist muss diese im VLC Player auf...
by h3rb3rn
Mon 21. Oct 2019, 11:42
Forum: Webserver(dienste)
Topic: Postfix/Dovecot with Let's Encrypt
Replies: 0
Views: 37256

Postfix/Dovecot with Let's Encrypt

Update Script #!/bin/bash # Postfix sudo postconf -e 'smtpd_tls_cert_file = /etc/letsencrypt/live/cloud.4noobs.de/fullchain.pem' sudo postconf -e 'smtpd_tls_key_file = /etc/letsencrypt/live/cloud.4noobs.de/privkey.pem' sudo postconf -e 'smtpd_sasl_type = dovecot' sudo postconf -e 'smtpd_sasl_path = ...
by h3rb3rn
Sat 17. Aug 2019, 01:48
Forum: Entwickler-/Experimentierboards (ARM)
Topic: Raspbian Buster (Debian 10) Image für Banana Pi A20 Board (BPI-M1)
Replies: 0
Views: 234031

Raspbian Buster (Debian 10) Image für Banana Pi A20 Board (BPI-M1)

aktualisierte Fassung vom 23.09.2020 Das Git Repository ist auf stabilere Server Hardware umgezogen. Bitte entschuldigt die zwischenzeitliche Downtime => => => bananapi_images-master.tar.gz (1,3 GB) <= <= <= [/color] Debian Buster Minimal Image mit armbian-setup und BananaPi Treibern. Benötigt mind...
by h3rb3rn
Mon 29. Jul 2019, 20:47
Forum: vServer
Topic: Proxmox GUI hinter Nginx verstecken
Replies: 0
Views: 41499

Proxmox GUI hinter Nginx verstecken

Fassung vom 21.04.2020 Proxmox GUI absichern Proxmox Port 8006 binden an localhost (127.0.0.1) Anlegen der Datei /etc/default/pveproxy ALLOW_FROM="127.0.0.1" DENY_FROM="all" POLICY="allow" Proxmox via ProxyPass hinter Nginx mit .htaccess verstecken Nginx und Webserver ...