Framboise Pi

Chiffrement de clé usb avec TrueCrypt

Chiffrement de clé usb avec TrueCrypt. 1) Insérer la clé usb. Ne pas monter le périphérie de stockage externe. 2) Vérification : pi@raspberrypi ~ $ sudo fdisk -l … Disk /dev/sdb: 16.0 GB, 16039018496 bytes 255 heads, 63 sectors/track, 1949 cylinders, total 31326208 sectors Units = sectors of 1 * 512 = 512 bytes Sector […]

Installation de TrueCrypt

Installation de TrueCrypt. 1) Création du répertoire de travail : pi@raspberrypi ~ $ mkdir TRUECRYPT pi@raspberrypi ~ $ cd TRUECRYPT/ pi@raspberrypi ~/TRUECRYPT $ 2) Installation des paquetages de base : pi@raspberrypi ~/TRUECRYPT $ sudo apt-get install libgtk2.0-dev libfuse-dev nasm libwxgtk2.8-dev 3) Installation de WxWidget : – Téléchargement : pi@raspberrypi ~/TRUECRYPT $ wget http://prdownloads.sourceforge.net/wxwindows/wxWidgets-2.8.12.tar.gz pi@raspberrypi ~/TRUECRYPT […]

Gestion des pins GPIO en C

Gestion des pins GPIO en C. 1) Création du répertoire de travail : pi@raspberrypi ~ $ mkdir GPIO pi@raspberrypi ~ $ cd GPIO/ 2) Téléchargement de la librairie : pi@raspberrypi ~/GPIO $ wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.25.tar.gz pi@raspberrypi ~/GPIO $ tar xvfz bcm2835-1.25.tar.gz pi@raspberrypi ~/GPIO $ cd bcm2835-1.25/ 3) Configuration de la compilation : pi@raspberrypi ~/GPIO/bcm2835-1.25 $ ./configure […]

Lancement d’application X par ssh

Lancement d’application X par ssh. I) Lancement d’une application X du serveur depuis un ordinateur. 1) Sur le Raspberry : – Fichier de configuration : Ouvrir : /etc/ssh/sshd_config Chercher : X11Forwarding Remplacer par : X11Forwarding yes – Relancer ssh : [~] ➔ sudo /etc/init.d/ssh restart 2) A partir d’un autre ordinateur : – Connexion vers […]