Monthly Archives: May 2024

Calculate MySQL usage

Calculate MySQL Memory Usage – Quick Stored Procedure

Posted in Linux | Comments Off on Calculate MySQL usage

Useful Nmap Commands

To see what systems on the 192.168.11.0 network are listening on port 22:nmap -sV -p 22 192.168.11.0/24 To do an nmap ping scan on 192.168.11.0 network:nmap -sp 192.168.11.0/24 To scan the top five ports on 192.168.11.7:nmap –top-ports 5 192.168.11.7

Posted in Linux | Comments Off on Useful Nmap Commands

How to determine the Ubuntu version

Use the Linux Standard Base command as follows:lsb__release -a

Posted in Linux | Comments Off on How to determine the Ubuntu version

Useful du commands

The du command is very useful when you are looking at disk space usage. Here are some of the most commonly used parameters: -h human-readable Displays sizes in human-readable format, using units such as KB, MB, GB, etc-a, –all Lists … Continue reading

Posted in Linux | Comments Off on Useful du commands