LAB-HW-05 - Check Memory and Storage Safely

Check memory and storage safely so you can separate low space, low memory, and normal system state.

HW System Lifecycle & Hardware

Check Memory and Storage Safely

Check memory and storage safely so you can separate low space, low memory, and normal system state.

25 min BEGINNER BOTH
What success looks like
  • Identify available memory separately from free storage.
  • Identify the main storage volume or mounted filesystem.
  • Finish without opening repair or format tools.
Safety notes
  • Do not open format, partition, or repair tools in this lab.
  • Stay in read-only inspection commands and views.

Goal

Separate memory pressure from storage capacity before you act on either one.


Safe sequence

  1. inspect memory
  2. inspect the main storage volumes
  3. identify free space
  4. stop once the map is clear

Windows memory and storage checks

Get-CimInstance Win32_OperatingSystem | Select-Object TotalVisibleMemorySize, FreePhysicalMemory Get-Volume | Select-Object DriveLetter, FileSystem, SizeRemaining, Size

Look for the difference between memory numbers and drive free-space numbers. They answer different questions.

Linux memory and storage checks

free -h lsblk df -h

free -h tells you about memory. lsblk and df -h help you understand storage and mounted space.


Move on when

  • you can identify available memory
  • you can identify free storage space
  • you can explain why those are not the same resource

What to do next

Best next step Learning

Return to the related lesson if you want the concept explained more deeply.

Open now