Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RamazanBIYIK/7849ec738c1ad28e7d259df0515b1fed to your computer and use it in GitHub Desktop.
Save RamazanBIYIK/7849ec738c1ad28e7d259df0515b1fed to your computer and use it in GitHub Desktop.
Linux- To find process that using specific port
sudo lsof -i -P -n | grep LISTEN //To find listening ports
sudo lsof -i -P -n | grep LISTEN | grep 3389 // With a specific port
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment