Tag: Linux

  • Creating and installing SSH Keys (Mac)

    Great article here (thanks HowtoForge) that pretty much worked as-is on my Mac running macOS 10.13.6. Never knew about about ‘ssh-copy-id’, will come in very handy!

  • Find that program running on that port

    macOS (tested on 10.11.6):sudo lsof -i :80…where ’80’ is the port you’re curious about (substitute any value).   Thanks to Databasically. See also here. Windows (tested on 10 Pro version 1709):netstat -ano…this will produce a list of ports in use and the PIDs using them) Thanks to @RickVanover. Fedora 20netstat -npl | grep 8013…this will find…