A quick way to scan your local network for devices, like a Raspberry Pi is the following:
sudo arp-scan -l
I use it all the time to find my RPis, so i made an alias for that. Added it to your .bash_aliases
or .bashrc
file like this:
alias netscan="sudo arp-scan -l"