Passer au contenu principal
Recherche avancée
Termes de recherche
Type de contenu

Correspondances exactes
Recherche par tags
Recherche par date
Mis à jour après
Mis à jour avant
Créé après
Créé avant

Résultats de recherche

95 résultats trouvés au total

XTeve EPG Docker installation

Docker

Création du container xteve : docker run -it -d --name=xteve -p 34400:34400 -v xteve:/home/xteve/.xteve bl0m1/xtevedocker:latest  Connexion sur l'interface web : http://192.168.1.69:34400/web/   M3U URL: http://192.168.1.69:34400/m3u/xteve.m3u (Sp...

docker
EPG
IPTV

File Browser dans docker

Docker

Création du container : docker run -d --name IptvFilesHttp -p 4466:80 -v /mnt/storage/docker/tellytv/config/:/opt/www/files/ mohamnag/nginx-file-browser http://192.168.1.69:4466/  

Proxmox Dark Theme

Linux

The installation is done via the CLI utility. Run the following commands on the PVE node serving the Web UI:   wget https://raw.githubusercontent.com/Weilbyte/PVEDiscordDark/master/PVEDiscordDark.sh bash PVEDiscordDark.sh install   Source : https://github...

Proxmox
Linux
Shell
PVE

Tester votre bande passante avec Iperf

Linux

Comment mesurer ma bande passante avec Iperf ? Iperf est un outil pour mesurer la bande passante et la qualité d’un lien réseau. Ce dernier est délimité par deux machines sur lesquelles est installé Iperf. Présentation Iperf La qualité d’un lien est détermi...

Proxmox redimentioner la partition pve-root

Linux

# Check disk space beforedf -h # Delete local-lvm storage in gui lvremove /dev/pve/data lvresize -l +100%FREE /dev/pve/root resize2fs /dev/mapper/pve-root # Check disk space after df -f

Proxmox
Linux
debian

Raspberry pi zero wifi boot

Linux

Mise en place du wifi sans écran  Sur la carte mémoire dans la partition BOOT ajouter un fichier wpa_supplicant.conf country=fr update_config=1 ctrl_interface=/var/run/wpa_supplicant network={ scan_ssid=1 ssid="MyNetworkSSID" psk="Pa55w0rd1234" }

Raspberry
Linux
Shell
wifi

Webcam Stream RTSP serveur

Linux

Installation d'un serveur RTSP : mise en place du docker pour le serveur RTSP docker run --rm -it --network=host aler9/rtsp-simple-server une fois le serveur lancé configurer avec ffmpeg l'encodage de la webcam vers le serveur RTSP /usr/bin/ffmpeg -f v4l2 ...

Linux
webcam
RTSP
docker

Ubuntu on a MacBookPro 8,2

Apple devices

Partition In OSX, open the Disk Utility, select the main disk. We're going to split this in to two parts. Up to you how much you want to dedicate to OSX. Set the 2nd partition to be "Free Space". rEFInd Because Apple is a super-special-snowflake, it's not p...

Linux
ubuntu
Apple
Macbook
Mac

Network scan python

Python

fichier scan.py #!/usr/bin/env python import subprocess import ipaddress alive = [] subnet = ipaddress.ip_network('192.168.1.0/23', strict=False) for i in subnet.hosts(): i = str(i) retval = subprocess.call(["ping", "-c1", "-n", "-i0.1", "-...

Installation d'une clé d'activation via py-kms

Windows

  Lancer un CMD en mode Administrateur et suivre la procédure : Suppression de la clé existante : slmgr /upk Installation de la nouvelle clé : Liste des clés slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX Configuration du serveur KMS : slmgr /skms 192.168.1....

KMS
KMS
Windows
windows

docker-gateone

Docker

defines a docker container with gateone installed Usage Install docker Download and start the gateone server instancedocker run --name gateone -p 443:10443 -p 2345:22 -d greyltc/gateone Test the gateone serverPoint your browser to:https://localhostand yo...

docker
Linux
ssh
gateone

Syncro Git

Git

Créer et cloner un répertoire Git Le répertoire Git est le répertoire central de tout projet géré et constitue la zone commune à tous les participants permettant de régler l’intégralité du contrôle des versions. Votre première étape dans Git consistera donc à...

Nettoyage de la Base de données SQLITE

Home Assistant

Recherche des capteurs Donc, on va en profiter pour identifier s'il y a des capteurs qui ne nous intéressent pas et qui prennent beaucoup de place, et on va dire au système de les exclure. Dans l'onglet Exécuter SQL, nous allons exécuter la requête SQL suiva...

iot
Linux
Hassio
Home Assistant

Automatisation Tidal-DL

Docker

Création de l'image Docker pour Tidal-DL Docker Fichier Dockerfile : (source ici : https://git.wlan.ovh/garfieldtux/docker-demo) # This file is a template, and might need editing before it works on your project. FROM python:3.8-slim WORKDIR /usr...

webhook
docker
Tidal
Rundeck

Docker speedtest-cli

Docker

commande pour tester la ligne avec speedtest-cli docker run --rm moutten/speedtest-cli speedtest --accept-gdpr

docker
speedtest
linux

WireGuard

Docker

WireGuard c'est quoi ?WireGuard est un protocole de communication et un logiciel libre et open source permettant de créer un réseau privé virtuel (VPN)2. Il est conçu avec les objectifs de facilité d'utilisation, de performances et de surface d'attaque basse. ...

wireguard
docker
Linux

Organize tools

Linux

installation de organize tools : pip install organize-tool Configuration de Organize : organize config configuration du fichier confid.yaml   rules: # - folders: ~/Desktop # filters: # - extension: # - jpeg # ...

Mac
Pip
Python
Linux

Qemu for Mac M1

Apple devices

installation de Qemu : brew install knazarov/qemu-virgl/qemu-virgl Création du dossier et téléchargement de l'archive pour ArchLinux : mkdir archlinuxKDE ...

Sshwifty Web SSH & Telnet Client

Docker

Sshwifty is a SSH and Telnet connector made for the Web. It can be deployed on your computer or server to provide SSH and Telnet access interface for any compatible (standard) web browser. Install Binary Compiled binaries can be found at the release sec...

bash script a partir d'un fichier variable

Linux

filename='url.txt' n=1 rm -rf downloadURL.txt while read line; do # for read each line echo "docker exec -i StreamRip tidal-dl -l $line" >> downloadURL.txt n=$((n+1)) done < $filename download='downloadURL.txt' while read line; do n=$((n+1)) don...