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 0verkill
Installation de 0verkill. 1) Répertoire de travail : [~] ➔ mkdir -p JEUX/0VERKILL [~] ➔ cd JEUX/0VERKILL/ [~/JEUX/0VERKILL] ➔ 2) Téléchargement du code source : [~/JEUX/0VERKILL] ➔ git clone https://github.com/hackndev/0verkill.git [~/JEUX/0VERKILL] ➔ cd 0verkill [~/JEUX/0VERKILL/0verkill (master)] ➔ 3) Configuration de la compilation : [~/JEUX/0VERKILL/0verkill (master)] ➔ ./purge [~/JEUX/0VERKILL/0verkill (master)] ➔ aclocal [~/JEUX/0VERKILL/0verkill (master)] ➔ autoheader […]
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 […]
Exemple d’utilisation de Docker
Exemple d’utilisation de Docker. 1) Démarrage du service : root@alarmpi ~]# systemctl start docker 2) Lancement automatique du service au démarrage du système : [root@alarmpi ~]# systemctl enable docker ln -s ‘/usr/lib/systemd/system/docker.service’ ‘/etc/systemd/system/multi-user.target.wants/docker.service’ 3) Création d’un fichier Docker : Ouvrir : Dockerfile Ajouter : FROM resin/rpi-raspbian RUN apt-get update RUN apt-get install -y openjdk-7-jre-headless wget […]
Installation de Docker sur ArchLinux
Installation de Docker sur ArchLinux. 1) Installation de git : [root@alarmpi ~]# pacman -S git 2) Téléchargement du script d’installation de docker : [root@alarmpi ~]# git clone https://github.com/resin-io/docker-install-script.git [root@alarmpi ~]# cd docker-install-script/ 3) Lancement de l’installation : [root@alarmpi docker-install-script]# sh ./install.sh 4) Redémarrage : [root@alarmpi docker-install-script]# shutdown -r now 5) Lancer Docker en tâche de […]
Installation de ArchLinux
Installation de ArchLinux. I) Installation de l’image ArchLinux sur une carte SD. 1) A partir d’un ordinateur disposant d’un lecteur de carte mémoire, insérer la carte mémoire dans le lecteur de carte memoire. /!\ Ne pas monter la carte mémoire /!\ 2) Répertoire de travail : [~] ➔ mkdir -p RASPBERRYPI/ARCHLINUX [~] ➔ cd RASPBERRYPI/ARCHLINUX/ […]
Installation de Fractint
Installation de Fractint. 1) Installation des dépendances : [~] ➔ sudo apt-get install libxft-dev 2) Répertoire de travail : [~] ➔ mkdir FRACTINT [~] ➔ cd FRACTINT/ 3) Téléchargement du code source : [~/FRACTINT] ➔ wget http://www.fractint.org/ftp/current/linux/xfractint-20.04p12.tar.gz 4) Décompression de l’archive : [~/FRACTINT] ➔ tar xvfz xfractint-20.04p12.tar.gz 5) Compilation : [~/FRACTINT] ➔ cd xfractint-20.04p12/ [~/FRACTINT/xfractint-20.04p12] […]
Installation du serveur « Mana World »
Installation du serveur « Mana World » ». 1) Installation des dépendances de base : [~] ➔ sudo apt-get install build-essential flex bison python make realpath git-core gcc-4.7 g++-4.7 2) Répertoire de travail : [~] ➔ mkdir -p JEUX/MANAWORLD/Serveur [~] ➔ cd JEUX/MANAWORLD/Serveur/ 3) Téléchargement du code source : [~/JEUX/MANAWORLD/Serveur] ➔ git clone https://github.com/themanaworld/tmwa.git [~/JEUX/MANAWORLD/Serveur] ➔ git clone […]
Installation du client « Mana World »
Installation du client « Mana World ». 1) Installation d’un serveur « Mana World » : https://miniordi.hacktech.dev/installation-dun-serveur-mana-world/ 2) Installation des dépendances : [~] ➔ sudo apt-get install autopoint libguichan-0.8.1-1 libguichan-sdl-0.8.1-1 libphysfs1 libsdl-image1.2 libsdl-mixer1.2 libsdl-net1.2 libsdl-ttf2.0-0 patch autoconf libtool libcurl4-gnutls-dev libgl1-mesa-dev libenet-dev libguichan-dev libsdl1.2-dev libsdl-image1.2-dev libsdl-net1.2-dev libsdl-mixer1.2-dev libphysfs-dev libpng12-dev libxml2-dev zlib1g-dev libsdl-ttf2.0-dev libsdl-gfx1.2-dev gettext 3) Répertoire de travail : [~] […]
Getting Started with Raspberry Pi de Matt Richardson et de Shawn Wallace
Getting Started with Raspberry Pi de Matt Richardson et de Shawn Wallace. Le bouquin est édité par Makezine donc un certain gage de qualité. Il y a un chapitre sur la programmation Scratch, un langage de programmation visuel spécialement destiné aux enfants. Un webcast des auteurs : So you got a Raspberry Pi for the […]