Check if a port is available on Ubuntu

There are several options at your disposal in the terminal:

$ sudo lsof -i -P -n | grep LISTEN
$ sudo netstat -tulpn | grep LISTEN
$ sudo lsof -i:22 # see a specific port such as 22
$ sudo nmap -sTU -O IP-address-Here