-==<XTBA>==-

Windows ne demande jamais à Chuck Norris d'envoyer le rapport d'erreur. Bill Gates vient le chercher lui même, avec toutes ses excuses.
Nous sommes le jeu. 28 mars 2024, 20:30

Heures au format UTC+03:00




Poster un nouveau sujet  Répondre au sujet  [ 126 messages ]  Aller à la page Précédente 1 2 3 4 5 6 Suivante
Auteur Message
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 13 août 2012, 04:08 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
News

Android 4.0 tourne sur Raspberry Pi
=> http://www.pcworld.fr/logiciels/actuali ... 0495,1.htm

XBian
=> http://xbian.org/

Raspbmc RC4 out
=> http://www.raspbmc.com/
... 12-08-2012 : new kernel, which brings better performance, especially with DTS decoding

Boitier Crust ... pas terrible (15 € sur bay UK)

Image

La carte d'extension Gertboard est disponible
=> http://www.generation-nt.com/gertboard- ... 12352.html

Image


Hackberry : une nouvelle carte pour développeur
=> http://www.59hardware.net/actualite/pro ... 12755.html

Image

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : mar. 14 août 2012, 20:33 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
Yummy

Raspi avec Openelec XBMC
=> http://openelec.tv/forum/124-raspberry- ... rry-pi-faq

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : mar. 14 août 2012, 21:44 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
:jap:

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : jeu. 13 sept. 2012, 23:55 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
Un supercalculateur en Raspi + LEGO
=> http://www.lemondeinformatique.fr/actua ... 50408.html

Image

===>> http://arstechnica.com/information-tech ... and-legos/

Image

http://westcoastlabs.blogspot.co.uk/201 ... amble.html

Citation :
Parallel Processing on the Pi (Bramble)
Parallel processing on the Raspberry Pi is possible, thanks to the ultra portable MPICH2 (Message Passing Interface). I was keen to try this out as soon as I managed to get hold of two of these brilliant little computers (yes I'm a lucky boy). Here I'm going to show how I managed to get it all working and will display the results :) (Bramble was a name an ingenious Raspberry Pi forum member made up, not myself!)

There are three ways which you can install MPICH2 (in case one doesn't seem to work for you), compiling and installing from source, my .deb package then following the rest of the tutorial, or the Python script file. Installing from source takes a while on the little Pi when not cross compiling.

Install - Choose Method 1, 2 or 3
1) Simply download the script;
wget https://github.com/downloads/philleonar ... install.py


and then run it as root with the command;
sudo python install.py

Then follow the instructions on the screen entering all of the necessary info. The script will do a full install and configuration like the steps in the tutorial below. Do this for every node on your Bramble.

I have also written an RSA key script which sets up a secure public and private key between the Master and all of the Slave nodes so that you don't have to enter the password into SSH every time, but maintain a secure connection;
wget https://github.com/downloads/philleonar ... -Pi/rsa.py


python rsa.py
You can run as root, and enter the username "root" for the other Slave(s) also for when you want to SSH as root.



Finally you can join onto the Testing phase of the tutorial if you want to, otherwise you are all setup!
Please let me know of any problems with the scripts and I will fix it :) Thanks!

2) From .deb package
First, download the .deb package;
wget https://github.com/downloads/philleonar ... _armel.deb

De-package and install;
sudo dpkg -i mpich2_1.4.1p1-1_armel.deb

3) From source;
First, download the source tar ball:
wget http://www.mcs.anl.gov/research/project ... 1p1.tar.gz

Now extract the files;
tar zxfv mpich2-1.4.1p1.tar.gz

Go into the source folder;
cd mpich2-1.4.1p1

Now we must run ./configure to configure the files ready for compilation;
sudo ./configure --disable-f77 --disable-fc

If you have a FORTRAN compiler then you can run it without "--disable-f77" and "--disable-fc".
If you do not, and you don't want to run FORTRAN programs on your cluster then make sure you do configure with them disabled as the error occurs a good 20 mins in and you have to start all over again :).

Now that you have configured without error, compile then install the compiled program;
sudo make
sudo make install

Setup

Now you should have MPICH2 installed on both (all) of your Raspberry Pis. On your Bramble, you are going to need one Master node and the rest are Slave nodes.
First create this file in both the pi and root user home directories,
touch ~/.rhosts
sudo touch /root/.rhosts

add the following lines to the normal user file (pi is the default username for both of my nodes);
Master pi
Slave pi

For the root user;
Master root
Slave root

Do this for every Pi/node on the Bramble.

Now edit the /etc/hosts file to contain the IP of each node and the master node like so;
192.168.0.14 Master
192.168.0.11 Slave

Edit /etc/hosts.allow to contain just "ALL+", or each IP address of the other nodes.

(To find out the IP on each node, type ifconfig)
Now edit /etc/securetty to contain the line to allow root access;
rsh, rlogin, rexec, pts/0, pts/1

Create the file /etc/pam.d/rsh if it is not there already and put the following in;
auth sufficient /lib/security/pam_nologin.so
auth optional /lib/security/pam_securetty.so
auth sufficient /lib/security/pam_env.so
auth sufficient /lib/security/pam_rhosts_auth.so
account sufficient /lib/security/pam_stack.so service=system-auth
session sufficient /lib/security/pam_stack.so service=system-auth

SSH Public Key Authentication - Optional

This section is optional but advised! The use of a public and private key for SSH will mean you won't have to type in the SSH password between the Master and the Slaves every time you want to run a program.

Use the Python script I have written;
wget https://github.com/downloads/philleonar ... -Pi/rsa.py


python rsa.py

Or if it does not work properly, follow the instructions at this address http://steve.dynedge.co.uk/2012/05/30/l ... vate-keys/
All thanks go to Steve Smith who wrote the tutorial!

Testing

Now you should be ready to rock and roll! Lets test the cluster out.
If you installed from source, you will have this file to test in the ~/mpich2-1.4.1p1/examples directory (you will need to compile it). If you installed from the .deb package then download this test file to each of the nodes in the same directory of each node (or even better a centralised dir, perhaps with NFS);
wget https://github.com/downloads/philleonar ... est.tar.gz

Extract the tar ball and make sure the permissions are set;
tar zxfv cp_test.tar.gz
sudo chmod -R 777 cpi_test

Enter the cpi_test directory. This cpi program is a little program written in C which outputs Pi to 16 decimal places and outputs run time. I think this program is quite apt given what is running this program :)
Now we have to setup a "machinefile". This tells MPICH2 where to delegate the processes to. Yes, more IP addresses to come! Create the machine file on the Master node;
touch machinefile

Now edit the file to contain the IP addresses of the node and a colon folowed by the number process to follow. For example my machine file looks like this;
192.168.0.14
192.168.0.11:2

This tells MPICH2 to pass the first process to my Master node at 192.168.0.14 and the next (second) process to my only slave node at 192.168.0.11. There is no process number after the first IP because empty is the same to the first. (i.e. 192.168.0.14 is the same as 192.168.0.14:1).

It's easier command wise if the machinefile and the program you are executing are in the same folder to reduce the length of the next command ;)

Now it's finally time to run our first program! Se sure that you are in the cpi_test folder and that the same folder is located in the same place in all the other nodes on the Bramble. Execute the following line;
mpiexec -f machinefile -n 100 ./cpi

-f shows mpiexec where the machinefile is. -n is the number of times to repeat the process. This is set at 100 to execute cpi 100 times so that we can see the difference in power easier.
If it gives you an error about file not found, again make sure all the cpi files are in the same location on each node.

If the command executes successfully then you should get a record of the processes running and an output like;

pi is approximately 3.1415926544231274, Error is 0.0000000008333343
wall clock time = 0.728116

You can remove the Slave IPs from the machinefile to compare running this program on just the Master node.

My Results

I ran the previous command 10 times, with both nodes enables and again with just the Master and took an average both times. The average I got from both nodes was; 0.731 Seconds – with a minimum of around 0.6 and a limit of 0.8. The average I got from one node enabled was; 1.418 Seconds –with a minimum of 0.85 and a limit of 5.0.

Finish

You should now have your Bramble up and running!

I just compiled and created a deb file, and found the best way to set the program up for the Pi, all thanks go to the team who created the awesome and portable MPICH2, and any sources I used to make the tutorial :)

Further reading: http://www.mcs.anl.gov/research/project ... lguide.pdf
This shows a lot of other useful applications of MPICH2 including compiling across your Bramble, would be nice to have a compiler farm made of Pis for big projects :)

Thanks for reading! Don't hesitate to ask for help below!

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : ven. 14 sept. 2012, 00:11 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
:love:

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : jeu. 11 oct. 2012, 21:13 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
Streaming WiFi Android -> RaspberryPi
=> http://korben.info/streaming-wifi-andro ... rrypi.html

Citation :
’idée c’est d’afficher ce qui se passe sur la tablette, sur un écran ou un projecteur grâce à une technologie de streaming WiFi. Pour cela, l’ESR labs a mis au point une ROM custom baptisée Transporter qui autorise donc une connexion WiFi à un hub Raspberry qui se charge alors de recevoir le flux vidéo et de le transmettre au projecteur.

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : jeu. 11 oct. 2012, 21:28 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
ya la RC5 de Rapbmc aussi qui gere le CEC :love:

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : dim. 14 oct. 2012, 11:51 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
Bon Raspbmc RC5 Roxx :love:

mis en mode boscniac derriere la TV de la chambre, dans un etuit plastoque de I900
juste avec ma Telecommade ATI remote et un cable RJ45
l'alim ce fait par l'usb de la TV

reste plus qu'a savoir si ma TV gère le CEC et cha je n'ai pas trouvé -_-

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 15 oct. 2012, 14:17 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
PAssage a 512Mo pour les raspberry (en lieu est place de 256mo)
http://www.presence-pc.com/actualite/ra ... ram-49053/

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : ven. 2 nov. 2012, 19:44 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
http://www.gizchina.com/2012/11/02/ipaz ... -core-cpu/

ou

http://www.w2comp.com/detail.asp?catid= ... tid=663086

me branche plus ce genre de truc ^^ surtout le 2em

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : sam. 3 nov. 2012, 14:06 
Hors ligne
Moderateur
Moderateur
Avatar de l’utilisateur

Enregistré le : mar. 7 oct. 2008, 10:56
Messages : 8099
Pseudo Boinc : [XTBA>TSA] chili69
Localisation : Anne scie
yes ça commence à démocratiser ces trucs :love: :love:
par contre je vais me méfier de plus en plus des gens qui veulent pluguer leur clé USB sur mon ordi du coup :whistle:

_________________
Image


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : sam. 3 nov. 2012, 14:07 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
^^

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : dim. 4 nov. 2012, 17:42 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
Owncloud sur Raspi
=> http://www.instructables.com/id/Raspber ... /?ALLSTEPS

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 5 nov. 2012, 16:19 
Hors ligne
Administrateur
Administrateur
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:21
Messages : 17419
Pseudo Boinc : [XTBA>TSA] IvanleFou
Localisation : Grenoble (38)
Vu que je ne peux plus rien lire avec mon serveur DLNA, ca me gonfle. je vais acheter ce truc et mettre un linux avec xbmc

http://www.arctic.ac/en/p/living/office-pc/572/mc101-barebone-a10.html

_________________
Image
V8 farmer [benou_miam.gif]


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 5 nov. 2012, 17:51 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
toi tu sort la grosse bertha !!

regarde la
http://www.w2comp.com/Catalog.asp?catid ... atid=51474

ou la
http://www.w2comp.com/catalog.asp?catid=74584

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 5 nov. 2012, 19:16 
Hors ligne
Administrateur
Administrateur
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:21
Messages : 17419
Pseudo Boinc : [XTBA>TSA] IvanleFou
Localisation : Grenoble (38)
boarf c'est tout piti, ya meme pas 16 cores :D

_________________
Image
V8 farmer [benou_miam.gif]


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 5 nov. 2012, 20:01 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
bha 4 Core sur le GPU chat chuffit

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : sam. 24 nov. 2012, 11:45 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
Now in !Beta
http://www.raspbmc.com/

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : sam. 24 nov. 2012, 13:57 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
C'est pas de l'ARM mais : Le NUC arrive en France : 299 € ou 319 € avec Thunderbolt
=> http://www.pcinpact.com/news/75219-le-n ... ndtech.htm

Intel travaille depuis quelque temps sur un concept de machine compacte permettant de mettre en valeur les atouts de sa dernière architecture, mais aussi de sa plateforme, tant en terme de consommation que d'échauffement. Ce projet, connu sous le nom de code NUC (Next Unit of Computing) devient peu à peu réalité, et après avoir dévoilé les deux modèles qui seront proposés lors de l'IDF, le géant de Santa Clara attaque la communication.

Image Image


Cela a commencé par l'apparition d'une fiche détaillant les DC3217BY et DC3217IYE. Pour rappel, le NUC est proposé sous la forme d'un boîtier compatible VESA de 116,6 x 112 x 39 mm. Il contient une carte mère de 101,6 x 101,6 mm sur lequel sont soudés un Core i3 3217U et un chipset QS77. Le système de refroidissement est bien entendu intégré.

L'utilisateur (ou l'intégrateur) n'a ainsi plus qu'à rajouter un SSD mSATA, de la DDR3 (deux emplacements) et une puce Wi-Fi / Bluetooth en mPCIe selon ses envies :

Image Image


La différence entre les deux produits se fait uniquement au niveau de la connectique. Celle-ci est composée de trois ports USB 2.0 dont un en façade et d'un port HDMI. Le DC3217IYE aura droit à un second port HDMI et un port réseau Gigabit en complément. Pour le DC3217BY, seul un port Thunderbolt sera rajouté, celui-ci supportant plusieurs écrans ou périphériques en chaîne.

Du côté de sa disponibilité sur le marché français, nous avons pu apprendre que des revendeurs seraient sur le coup, mais il reste à voir s'il sera proposé vide ou plein chez nous, et surtout à quel tarif. Si tout va bien, nous devrions en savoir plus d'ici la fin du mois. Aux dernières nouvelles, il serait question de 300 à 500 € selon les cas et les configurations proposées.

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : sam. 24 nov. 2012, 15:22 
Hors ligne
VIP
VIP
Avatar de l’utilisateur

Enregistré le : sam. 17 janv. 2009, 23:19
Messages : 3442
Pseudo Boinc : [XTBA>TSA] augur
Localisation : 57 67
5 mégapixels et 1080p pour la caméra Raspberry Pi
=> http://www.tomshardware.fr/articles/ras ... 1-165.html

++

_________________
Image

Kévin, sor deux sec or !!


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 26 nov. 2012, 19:37 
Hors ligne
Administrateur
Administrateur
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:21
Messages : 17419
Pseudo Boinc : [XTBA>TSA] IvanleFou
Localisation : Grenoble (38)
Je viens de voir que le mois dernier yavait une journee de decouvert/formation a la prog sur le raspberry qui etait organisee a mon taff :D

_________________
Image
V8 farmer [benou_miam.gif]


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 26 nov. 2012, 20:42 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
^^

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : dim. 6 janv. 2013, 16:24 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
al in one
http://www.lesnumeriques.com/disque-dur ... 27656.html

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 7 janv. 2013, 11:05 
Hors ligne
Moderateur
Moderateur
Avatar de l’utilisateur

Enregistré le : mar. 7 oct. 2008, 10:56
Messages : 8099
Pseudo Boinc : [XTBA>TSA] chili69
Localisation : Anne scie
pas mal ça dit donc pour se faire un petit lecteur multimédia [:king]

_________________
Image


Haut
   
 Sujet du message : Re: HTPC Low Cost - ARM
MessagePosté : lun. 7 janv. 2013, 11:26 
Hors ligne
Avatar de l’utilisateur

Enregistré le : ven. 3 oct. 2008, 20:11
Messages : 19455
Pseudo Boinc : [XTBA>TSA] Biour
Localisation : Grenoble
ouaip, surtout si fourni avec le clavier telecommande
il a l'air largement plus perf que le Rasp niveau CPU (pas regarder pour le gpu)

_________________
Forever Qlimax Addict!
Image
Image

Hardcore Will Never DIe.


Haut
   
Afficher les messages postés depuis :  Trier par  
Poster un nouveau sujet  Répondre au sujet  [ 126 messages ]  Aller à la page Précédente 1 2 3 4 5 6 Suivante

Heures au format UTC+03:00


Qui est en ligne

Utilisateurs parcourant ce forum : Aucun utilisateur enregistré et 1 invité


Vous ne pouvez pas poster de nouveaux sujets
Vous ne pouvez pas répondre aux sujets
Vous ne pouvez pas modifier vos messages
Vous ne pouvez pas supprimer vos messages
Vous ne pouvez pas joindre des fichiers

Rechercher :
Aller à :  
cron
Développé par phpBB® Forum Software © phpBB Limited
Traduit par phpBB-fr.com