Administrateur

Installation d’un sous-domaine avec une adresse ip dynamique

Installation d’un nom de domaine avec une adresse ip dynamique. Matériels : – Livebox – Raspberry Pi I) Installation matériel : Le Raspberry Pi est alimenté par l’USB de la Livebox. Un câble réseau relie les 2 matériels. Voir l’article suivant : https://miniordi.hacktech.dev/raspberry-pi-livebox-zte/ II) Sur la Raspberry Pi, installer et configurer un serveur LAMP : […]

« A la découverte du Raspberry Pi » de Matt Richardson et Shawn Wallace

« A la découverte du Raspberry Pi » de Matt Richardson et Shawn Wallace.

« Raspberry Pi. Exploitez tout le potentiel de votre nano-ordinateur » de François Mocq

« Raspberry Pi. Exploitez tout le potentiel de votre nano-ordinateur » de François Mocq. A acheter directement sur le site de l’éditeur ENI : http://www.editions-eni.fr/supports-de-formation/raspberry-pi-exploitez-tout-le-potentiel-de-votre-nano-ordinateur/.7b1932c6eaaf67ee35cebea40fef09b9.html

Installation de Quakeforge

Installation de Quakeforge. 1) Installation des dépendances : [~] ➔ sudo apt-get install libgl1-mesa-swx11 2) Répertoire de travail : [~] ➔ mkdir -p JEUX/QUAKE1 [~] ➔ cd JEUX/QUAKE1/ 3) Installation de Bison : – Téléchargement du code source : [~/JEUX/QUAKE1] ➔ wget http://ftp.gnu.org/gnu/bison/bison-2.7.tar.gz – Décompression de l’archive : [~/JEUX/QUAKE1] ➔ tar xvfz bison-2.7.tar.gz [~/JEUX/QUAKE1] ➔ […]

Minage de BitCoin

Minage de BitCoin. /!\ En-cours de rédaction /!\ 1) Répertoire de travail : [~] ➔ mkdir BITCOIN [~] ➔ cd BITCOIN/ 2) Téléchargement de CpuMiner : [~/BITCOIN] ➔ wget http://downloads.sourceforge.net/project/cpuminer/pooler-cpuminer-2.4.tar.gz 3) Décompression de l’archive : [~/BITCOIN] ➔ tar xvfz pooler-cpuminer-2.4.tar.gz [~/BITCOIN] ➔ cd cpuminer-2.4/ 4) Configuration de la compilation : [~/BITCOIN/cpuminer-2.4] ➔ ./configure 5) Compilation […]

Bashrc pour ArchLinux

Bashrc pour ArchLinux. Ouvrir : /etc/bash.bashrc Remplacer tout par : # /etc/bash.bashrc # # https://wiki.archlinux.org/index.php/Color_Bash_Prompt # # This file is sourced by all *interactive* bash shells on startup, # including some apparently interactive shells such as scp and rcp # that can’t tolerate any output. So make sure this doesn’t display # anything or bad […]

Sauvegarde d’une image docker

Sauvegarde d’une image docker. 1) Vérfication de /tmp : [root@framboisepi ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/root 15G 2.2G 12G 16% / devtmpfs 85M 0 85M 0% /dev tmpfs 93M 0 93M 0% /dev/shm tmpfs 93M 436K 92M 1% /run tmpfs 93M 0 93M 0% /sys/fs/cgroup tmpfs 93M 0 93M 0% […]

Installation de LAMP sous ArchLinux

Installation de LAMP sous ArchLinux. 1) Installation d’Apache : [root@framboisepi ~]# pacman -S apache 2) Installation de Php : [root@framboisepi ~]# pacman -S php php-apache 3) Installation de MariaDB : – Installation de MariaDB : [root@framboisepi ~]# pacman -S mariadb – Configuration : Ouvrir : /etc/mysql/my.cnf Chercher : #innodb_buffer_pool_size = 16M Remplacer par : innodb_buffer_pool_size […]