Important
N’oubliez pas de connecter un câble réseau entre votre box internet et la prise RJ45 de votre Raspberry, sinon l’adresse fournis sera fausse !Login : pi
Password : raspberry
Attention
Si vous avez fraichement installé Raspbian, le clavier va être en anglais, tapez alors : rqspberry
Rappel
Sous un environnement Linux le mot de passe ne s'affiche pas lors de la saisie !
Linux raspberrypi 3.1.9+ #168 PREEMPT Sat Jul 14 18:56:31 BST 2012 armv6l
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Type 'startx' to launch a graphical session
NOTICE: the software on this Raspberry Pi has not been fully configured. Please run 'sudo raspi-config'
pi@raspberrypi ~ $
Récupérer l’adresse ip locale
Information
Sur linux c’est la commande ifconfig qui permet d’afficher les informations réseau.pi@raspberrypi ~ $ ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:xx:xx:xx:xx
inet addr:192.168.0.13 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:644 errors:0 dropped:0 overruns:0 frame:0
TX packets:285 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:75700 (73.9 KiB) TX bytes:28617 (27.9 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
192.168.0.13
La commande : « ifconfig » n’est plus recommandé,
Maintenant il faut la remplacer par : « ip address show ».
BONUS :
Pour voir sur l’interface Wifi :
$ ip address show wlan0
Pour voir sur l’interface Ethernet :
$ ip address show eth0