We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to check if the port is in use in
Run any one of the following commands on Linux to see open ports:
sudo lsof -i -P -n | grep LISTEN sudo netstat -tulpn | grep LISTEN sudo ss -tulpn | grep LISTEN sudo lsof -i:22 ## see a specific port such as 22 ## sudo nmap -sTU -O IP-address-Here
The text was updated successfully, but these errors were encountered:
To check the disk usage of directory du dir-name -h
du dir-name -h
CPU usage
top htop ps aux | grep process-name
Sorry, something went wrong.
get your kernel version or know which distribution you are using
uname -a neofetch
How to get your current IP address?
ifoconfig ip addr show eth0
No branches or pull requests
How to check if the port is in use in
Run any one of the following commands on Linux to see open ports:
The text was updated successfully, but these errors were encountered: