Services currently running:
brew services list
Check who's using a port
sudo lsof -i :8000
Then kill the process on that port
kill -9 INSERT-PID-HERE
Or
kill -9 $(lsof -t -i:8000)
Check who's using the external disk
lsof | grep <filepath>
Services currently running:
brew services list
Check who's using a port
sudo lsof -i :8000
Then kill the process on that port
kill -9 INSERT-PID-HERE
Or
kill -9 $(lsof -t -i:8000)
Check who's using the external disk
lsof | grep <filepath>