Administrateur

Hébergement de multiple conteneur sur un seul serveur avec HAProxy

Hébergement de multiple conteneur sur un seul serveur avec HAProxy. Liens. https://blog.ssdnodes.com/blog/linux-containers-lxc-haproxy/ https://gist.github.com/theprojectsomething/83f7a0ab151a2483934fb675a42cc13d#1-updating-the-vps I/ Serveur Gandi IaaS : hacklab03. Distribution : Ubuntu 18.04 LTS CPU : 4 RAM : 50 Go Nom du disque système : sysdiskhl03 Taille : 50 Go Nom (Hostname) : serverhl03 Adresse ipv4 : serveurip Identifiant administrateur : admin II/ Configuration […]

[Jeu] Yadex : Editeur de niveau pour Doom

[Jeu] Yadex : Editeur de niveau pour Doom Yadex4Raspi : https://github.com/Nekrofage/Yadex4Raspi

Boitier en impression 3d pour Raspberry Pi 4

Boitier en impression 3d pour Raspberry Pi 4 Thingverse : https://www.thingiverse.com/thing:3918203

[JEU] Zandronum sans son sous Raspbian 10 Buster

[JEU] Zandronum sans son sous Raspbian 10 Buster 1/ Dépôt « Zandronum pour Raspberry Pi » : https://bitbucket.org/ptitSeb/zandronum Commit : 461f6a9 Du : 2018-04-29 2/ Fichier diff « zandronum_nosound.diff » : diff -r 461f6a973924 src/CMakeLists.txt — a/src/CMakeLists.txt Sun Apr 29 16:39:35 2018 +0200 +++ b/src/CMakeLists.txt Sat Oct 19 10:41:15 2019 +0200 @@ -305,9 +305,7 @@ add_definitions( -DNO_SERVER_GUI=1 ) # […]

[JEU] Minetest v0.4.1.5 support Lua sous Raspbian 10 Buster

[JEU] Minetest v0.4.1.5 sous Raspbian 10 Buster Erreur : 2019-10-13 16:42:40: ERROR[Main]: ModError: Failed to load and run script from /home/pi/JEUX/MINETEST/minetest.v415/bin/../mods/raspberryjammod/init.lua: 2019-10-13 16:42:40: ERROR[Main]: …minetest.v415/bin/../mods/raspberryjammod/socket.lua:21: module ‘socket.cx64’ not found: 2019-10-13 16:42:40: ERROR[Main]: no field package.preload[‘socket.cx64’] 2019-10-13 16:42:40: ERROR[Main]: no file ‘./socket/cx64.lua’ 2019-10-13 16:42:40: ERROR[Main]: no file ‘/usr/local/share/lua/5.1/socket/cx64.lua’ 2019-10-13 16:42:40: ERROR[Main]: no file ‘/usr/local/share/lua/5.1/socket/cx64/init.lua’ 2019-10-13 16:42:40: […]

Télégraphe de Chappe

Télégraphe de Chappe Code source : Dépôt ILArd : https://github.com/Ilard/telegraphechappe_web https://github.com/Ilard/telegraphechappe_arduino https://github.com/Ilard/telegraphechappe_optical Dépôt Nekrofage : https://github.com/Nekrofage/SignalDetectionCam https://github.com/Nekrofage/TelegrapheChappe

Installation de Jitsi

Installation de Jitsi. I/ Serveur Gandi IaaS : hacklab. Distribution : Debian 9 CPU : 4 RAM : 4 Go Nom du disque système : sysdiskhl02 Taille : 15 Go Nom (Hostname) : serverhl02 Identifiant administrateur : admin II/ Configuration. 1/ Connexion sur le serveur. util01@station02:~$ ssh admin@217.70.189.227 admin@217.70.189.227’s password: Linux serverhl02 4.9.0-4-amd64 #1 SMP […]

Installation de Rocket.Chat

Installation de Rocket.Chat. I/ Serveur Gandi IaaS : hacklab. Distribution : Debian 9 CPU : 1 RAM : 1 Go Nom du disque système : sysdiskhl01 Taille : 15 Go Nom (Hostname) : serverhl01 Identifiant administrateur : admin II/ Configuration. 1/ Connexion sur le serveur. util01@station02:~$ ssh admin@217.70.191.106 admin@217.70.191.106’s password: Linux serverhl01 4.9.0-4-amd64 #1 SMP […]

Sokoban

Sokoban Avec @AlexSolex 1/ Idées. https://www.youtube.com/watch?v=rpqiVx5WM7w 2/ Construction. Détail des connexions sur la plaque d’essai : Sokoban en boite : 3/ Code source Arduino. https://github.com/Nekrofage/Sokoban 4/ Vidéo.

RaspberryPi + OpenCV + Webcam : VIDEOIO ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV

RaspberryPi + OpenCV + Webcam : VIDEOIO ERROR: V4L2: Pixel format of incoming image is unsupported by OpenCV Ajouter : import cv2 def show_webcam(): cam = cv2.VideoCapture(0) while True: ret_val, img = cam.read() cv2.imshow(‘my webcam’, img) if cv2.waitKey(1) == 27: break # esc to quit cv2.destroyAllWindows() def main(): show_webcam() if __name__ == ‘__main__’: main() Erreur […]