Virtualisation de Lubuntu 18.04 avec Qemu 2.11 sous Lubuntu 18.04
Virtualisation de Lubuntu 18.04 avec Qemu 2.11 sous Lubuntu 18.04. > Distribution : Lubuntu 18.04 LTS 64 bits Qemu : 2.11.1 Configuration matériel : CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ (2200 MHz) Memory: 1999 MB OS Version: Linux 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 Graphics Card Vendor: NVIDIA […]
Installation/configuration/test de Ansible
Installation/configuration/test de Ansible. Distribution de travail : Ubuntu 17.10 Serveur de test : Machine virtuelle Gandi 1/ Identification du serveur distant. Ouvrir : /etc/hosts Chercher : 127.0.0.1 localhost Ajouter après : 217.70.191.12 serv01 2/ Copier la clé publique sur le serveur. – Génération de la clé ssh : util06@station06:~$ ssh-keygen – Copie de la clé […]
[Gandi] [IaaS] Attach data disk
[Gandi] [IaaS] Attach data disk. 1/ Attach the new data disk on the server. 2/ Check if the data disk is correctly recognize. r root@server01test:/home/admin# fdisk -l … Disk /dev/xvdb: 5 GiB, 5368709120 bytes, 10485760 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 32768 bytes I/O size […]
[Gandi][Simple Hosting] [Python 3.6] Installation de Django 1.8
[Gandi][Simple Hosting] [Python 3.6] Installation de Django 1.8 Instance Simple Hosting : Python 3.6 / MySQL 5.7 (Percona) 1/ Créer le répertoire de travail. ➜ ~ mkdir -p PYTHON/DJANGO/vhost/ ➜ ~ cd PYTHON/DJANGO/vhost ➜ vhost 2/ Cloner le dépôt de l’exemple Django. ➜ vhost git clone https://github.com/jpetazzo/django-on-gpaas.git default Clonage dans ‘default’… remote: Counting objects: 47, […]
Installation de Let’s Encrypt sous Apache2
Installation de Let’s Encrypt sous Apache2. La procédure se déroule sous l’utilisateur ‘root‘. 1/ Installation de Apache2. root@serverdia:/home/admin# apt-get install apache2 2/ Installation de ‘certbot‘ pour Let’s Encrypt. root@serverdia:/home/admin# apt-get install python-certbot-apache 3/ Arrêt du serveur Apache2. root@serverdia:/home/admin# service apache2 stop 4/ Génération des fichiers Let’s Encrypt. root@serverdia:/home/admin# certbot certonly –standalone 5/ Activation des modules […]
Zandronum sous Docker avec noVNC
Zandronum sous Docker avec noVNC. Distribution de travail : Ubuntu 16.04.4 LTS Xenial Docker : 17.05.0-ce 1/ Configuration de l’utilisateur. util01@station02:~$ sudo usermod -a -G docker $USER util01@station02:~$ sudo chmod 666 /var/run/docker.sock 2/ Répertoire de travail. util01@station02:~$ mkdir -p JEUX/DOOM/Docker util01@station02:~$ cd JEUX/DOOM/Docker/ util01@station02:~/JEUX/DOOM/Docker$ 3/ Téléchargement de l’image Docker. util01@station02:~/JEUX/DOOM/Docker$ git clone https://gitlab.com/frozenfoxx/docker-zandronum.git Clonage dans […]
Configuration de l’auto-complétion pour Phaser.io sous Atom.
Configuration de l’auto complétion pour Phaser.io sous Atom. 1/ Installer Atomj-terns : https://atom.io/packages/atom-ternjs 2/ Sauvegarder la configuration de Ternjs : – [Packages][Atom Ternjs][Configure Project] Onglet [atom-ternjs project config] : – [Save & Restart Server] 3/ Initialiser le plugin ‘phaser‘ : Ouvrir : .tern-project Chercher : « doc_comment »: true Remplacer par : « doc_comment »: true, « phaser »: {} 4/ […]
Installation de Grunt
Installation de Grunt. Distribution : Ubuntu 17.10 1/ Installation de Node.js. ➜ ~ sudo apt-get install python-software-properties ➜ ~ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash – ➜ ~ sudo apt-get install nodejs 2/ Vérification. ➜ ~ node –version v8.11.2 ➜ ~ npm –version 5.6.0 3/ Installation de Grunt via NPM. ➜ ~ sudo npm […]
[Gandi] [IaaS] Debian 9 : Répertoire /srv/
[Gandi] [IaaS] Debian 9 : Répertoire /srv/ Problème : root@server01gandi:/# cd srv/ root@server01gandi:/srv# mkdir ftp mkdir: impossible de créer le répertoire « ftp »: Permission non accordée Solution : root@server01gandi:/# apt-get install lsof root@server01gandi:/# lsof /srv/ COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME automount 452 root 10r DIR 0,36 0 12895 /srv root@server01gandi:/# kill -9 […]
Configuration des locales
Configuration des locales. La procédure se fait sous l’utilisateur ‘root‘. 1/ Fichier de configuration des locales. Ouvrir : /etc/locale.gen Chercher : # fr_FR.UTF-8 UTF-8 Remplacer par : fr_FR.UTF-8 UTF-8 Action : # locale-gen 2/ Initialisation des locales. # export LANGUAGE= »fr_FR.UTF-8″ # export LANG= »fr_FR.UTF-8″ 3/ Configuration des locals. # dpkg-reconfigure locales locales-all … 63. bho_IN UTF-8 […]