15 July 2014 · 1 minute read
Install nmap on Mac to find out IP address of Pi on network and then SSH into the Pi:
brew install nmap
sudo nmap -sn 192.168.1.0/24
:::bash
Starting Nmap 6.40 ( http://nmap.org ) at 2014-07-15 19:27 CEST
Nmap scan report for 192.168.1.1
Host is up (0.0021s latency).
MAC Address: 78:6A:89:42:7A:76 (Unknown)
Nmap scan report for 192.168.1.3
Host is up (0.092s latency).
MAC Address: 00:88:65:3F:94:A8 (Apple)
Nmap scan report for 192.168.1.4
Host is up (0.0035s latency).
MAC Address: B8:27:EB:69:DC:41 (Raspberry Pi Foundation)
Nmap scan report for 192.168.1.11
Host is up.
Nmap done: 256 IP addresses (4 hosts up) scanned in 3.44 seconds
ssh -X pi@192.168.1.4
apt-get install tightvncserver
vncserver
vncserver :1
And on the iMac.
And from any device with a terminal in the same network, including an iPhone with an application such as Prompt: ssh -X pi@192.168.1.4
To be expanded with more details.