free -m output?free -m on a Linux system. What does the Mem: line show?free -m
The free -m command shows memory usage in megabytes. The Mem: line lists total memory, used memory, free memory, shared memory, buffers/cache, and available memory.
uptime command output?uptime on a Linux system. Which of the following best describes the output?uptime
The uptime command shows how long the system has been running, current time, how many users are logged in, and the system load averages over 1, 5, and 15 minutes.
vmstat 1 2 command output show?vmstat 1 2. What does the second line of output represent?vmstat 1 2
The first line of vmstat output shows averages since boot. The second line shows statistics for the last 1 second interval, which is the sampling period.
free -m show low free memory but high available memory?free -m shows low free memory but high available memory. What is the most likely explanation?Linux uses free memory to cache files and buffers to speed up access. This memory is counted as used but can be freed quickly, so available memory is a better indicator of free memory.
The top command provides a live, interactive view of CPU usage, memory usage, and running processes, making it ideal for real-time monitoring.