If you want to find the IP address of your Raspi somewhere on your LAN, there is handy method to do from your Linux or OS X system: use the command "arp-scan":
Code: Select all
sander@flappie:~$ sudo arp-scan --localnet --interface=wlan0 | grep b8:27:eb:
192.168.10.107 b8:27:eb:96:c4:2f (Unknown)
sander@flappie:~$
If your Linux / OS X system uses eth0 and not wlan0, fill out --interface=eth0.
If you have newer version of arp-scan (see http://ipv6-or-no-ipv6.blogspot.nl/2013 ... an-on.html how to install that from source) it will also tell it actually is a Raspi:
Code: Select all
sander@flappie:~$ sudo arp-scan --localnet --interface=wlan0 | grep b8:27:eb:
192.168.10.107 b8:27:eb:96:c4:2f Raspberry Pi Foundation
sander@flappie:~$
HTH