Horje
archlinux free used port Code Example
archlinux free used port
// Install lsof package (example for archlinux)
sudo pacman -S lsof 

// List ports that are being used
sudo lsof -i -P -n | grep LISTEN

// lsof output example, the 2nd value is the process id (6951)
Discord   6951 damian   49u  IPv4  47939      0t0  TCP 127.0.0.1:6463 (LISTEN)

// kill the process
kill 6951




Shell

Related
git merge branch into main Code Example git merge branch into main Code Example
mac install gensim Code Example mac install gensim Code Example
push to a new remote branch Code Example push to a new remote branch Code Example
Installing ruby version manager (rvm) Code Example Installing ruby version manager (rvm) Code Example
linux find partial name Code Example linux find partial name Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8