Recherche avancée
Résultats de recherche
95 résultats trouvés au total
XTeve EPG Docker installation
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...
File Browser dans 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
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...
Tester votre bande passante avec Iperf
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
# 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
Raspberry pi zero wifi boot
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" }
Webcam Stream RTSP serveur
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 ...
Ubuntu on a MacBookPro 8,2
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...
Network scan 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
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....
docker-gateone
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...
Syncro 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
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...
Automatisation Tidal-DL
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...
Docker speedtest-cli
commande pour tester la ligne avec speedtest-cli docker run --rm moutten/speedtest-cli speedtest --accept-gdpr
WireGuard
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. ...
Organize tools
installation de organize tools : pip install organize-tool Configuration de Organize : organize config configuration du fichier confid.yaml rules: # - folders: ~/Desktop # filters: # - extension: # - jpeg # ...
Qemu for Mac M1
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
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
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...