Installation de Kodi sur Raspberry
#Raspberry[modifier]
La première chose à faire est de télécharger l'image de la distribution adaptée au Raspberry Pi 1 ou 2 sur le site d'OpenElec
ATTENTION à bien télécharger la version "diskimage"
Une fois cela fait, la suite dépend du système sur lequel vous allez préparer votre support
Une fois le support préparé, il suffit de l'introduire dans le Rpi et allumer la framboise pour profiter de kodi...
Préparation sous Windows[modifier]
La procédure va installer l'image OPENELEC sur votre clé USB / Carte SD/Micro SD en utilisant Windows.
Ressources nécessaires :
- Windows XP/7/8.x/10
- Win32DiskImager
- 7zip
ATTENTION : Votre clé USB/Carte mémoire sera intégralement effacée pendant la procédure d'installation d'OpenElec qui va formater l'ensemble du support mémoire.
Assurez-vous de bien choisir la bonne lettre de lecteur pour votre clé USB/Carte mémoire, pour éviter d'effacer un disque dur...
Instructions :
Extraire l'image en utilisant 7zip.
ce qui crée un fichier image décompressé ([nomdufichier].img):
Branchez votre clé USB / Carte mémoire. Elle doit apparaitre avec une lettre de lecteur. (J: dans mon exemple)
Lancez Win32DiskImager
Selectionnez le fichier de l'image (flèche noire) et vérifiez bien la lettre de lecteur de destination (flèche rouge).
Cliquez sur "Write" (flèche bleue)
Quand le processus est terminé, éjectez votre clé USB/carte mémoire à partir de l'explorateur Windows en sélectionnant "Éjecter".
Préparation sous Mac OSX[modifier]
+++Appel à Contribution+++ +++Appel à Contribution+++ +++Appel à Contribution+++ +++Appel à Contribution+++
pour contribuer, venez proposer vos services : sur le sujet dédié du forum
Traduction requise :
Extracting the archive using the GUI[modifier]
Simple double click the OpenELEC-build-architecture-version.img.gz file in the finder to let archive utility extract it for you.
Extraire les archives en mode CLI (Interface en Ligne de Commandes)[modifier]
Ouvrir le Terminal.
Change to the folder where you downloaded the release archive to (lets assume the Downloads folder in your home directory):
cd ~/Downloads
Then extract the archive. It will be named OpenELEC-build-architecture-version.img.gz. We need to use gunzip to extract the archive.
gunzip -d OpenELEC-Generic.x86_64-5.0.0-efi.img.gz
Creating the USB Stick[modifier]
Insert your USB stick and open a terminal window and run the following
diskutil list
This will output something like this
/dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *60.0 GB disk0 1: EFI 209.7 MB disk0s1 2: Apple_RAID 59.7 GB disk0s2 3: Apple_Boot Boot OS X 134.2 MB disk0s3 /dev/disk1 #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *8.0 GB disk1 1: DOS_FAT_32 UNTITLED 8.0 GB disk1s1
Find your USB Stick, in this case it is disk1
You need to use diskutil to unmount the disk
diskutil unmountDisk /dev/disk1
Next we need to zero out the partition map, OSX has an issue if you don't do this
sudo dd if=/dev/zero of=/dev/rdisk1 bs=1024 count=1
Next we need to write the disk image. You'll need superuser privileges to do this, whether you use the root user or sudo. Either way, you need to execute the following command:
sudo dd if=OpenELEC-Generic.x86_64-5.0.0-efi.img of=/dev/rdisk1 bs=4m
Lastly ensure the changes are synced to the USB Stick before removing it:
sync
préparation sous Linux[modifier]
Formater votre carte SD en FAT32 avec GParted.
Copier l'image .img sur la carte SD à l'aide de la commande DD :
Télécharger le fichier .img à copier sur la carte SD
Ouvrir le terminal (CTRL + T) et insérer votre carte SD
Rechercher le nom de la carte SD avec la commande sudo dmesg | tail -20
Taper les commandes suivantes :
sudo umount /dev/devicenode
sudo dd if=/path/to/downloaded.img of=/dev/devicenode bs=1M
Retirer la carte SD une fois que tout est terminé.
+++Traduction requise+++ +++Traduction requise+++ +++Traduction requise+++ +++Traduction requise+++
Extracting the archive using the GUI[modifier]
Just open the folder where you downloaded the file, find the OpenELEC-build-architecture-version.img.gz file, right-click on it and select 'Extract Files...'.
Extracting the archive using the CLI (Command Line Interface)[modifier]
Each distro has a different way of getting to the Terminal however it is usually called something like Terminal or Term. On Ubuntu it can be found in the Applications menu.
Change to the folder where you downloaded the release archive to (let's assume the Downloads folder in your home directory):
cd ~/Downloads
Then extract the archive. It will be named OpenELEC-build-architecture-version.img.gz. We need to use gunzip to extract the archive.
gunzip -d OpenELEC-Generic.x86_64-5.0.0-efi.img.gz
Creating the USB Stick[modifier]
Now pop your USB Stick in. After you've inserted the USB Stick use dmesg | tail to find out what /dev/device it is. It should be something like /dev/sdX).
You can also use parted or fdisk
parted -l
Disk /dev/sdb: 1016MB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type File system Flags 1 1049kB 1015MB 1015MB primary ext4
First make sure the disk is unmounted
umount /dev/sdb1
Next we need to write the disk image. You'll need superuser privileges to do this, whether you use the root user or sudo. Either way, you need to execute the following command:
sudo dd if=OpenELEC-Generic.x86_64-5.0.0-efi.img of=/dev/sdb bs=4M
Lastly ensure the changes are synced to the USB Stick before removing it:
sync