How to watch memory on Xiaomi RedmiBook 8: RAM and drive

Xiaomi RedmiBook 8 laptops feature a hybrid memory architecture: RAM and built-in storage (SSD or eMMC). Users often face the need to check the amount of available memory β€” whether it is to diagnose the system’s β€œbrakes”, prepare for an upgrade or just out of curiosity. However, standard methods (for example, through β€œSystem Properties” in Windows) do not always display the full picture: part of the memory can be reserved for integrated graphics, and SSDs are sometimes divided into hidden partitions.

In this article, we will discuss 5 reliable ways to check memory on RedmiBook 8, from basic (via Windows interface) to advanced (using BIOS and the command line). Particular attention will be paid to the nuances specific to this model: for example, how to distinguish hardware from virtual memory, why the task manager can display less RAM than specified in the characteristics, and how to check the health of SSD without the risk of damaging data. If you plan to increase the RAM capacity or replace the drive, here you will find current data on supported standards DDR4, and limitations.

1. Memory check through β€œWindows Settings” (the easiest way)

This method is suitable for quickly estimating the amount of RAM and drive without installing additional programs, but it only shows basic information, without detailing by memory type or hidden partitions.

Instructions:

  • πŸ–₯️ Press the Win + I key combination to open Windows Options.
  • πŸ” Go to System β†’ About System.
  • πŸ“Š Scroll down to the Device Characteristics block.
  • πŸ’Ύ To check the drive, go back to Settings and select System β†’ Storage, and it will show the total disk size and categorization (applications, documents, etc.).

⚠️ Warning: The About section may display less memory than the RedmiBook 8 specs. This is normal: some RAM is reserved for Intel UHD Graphics embedded graphics (up to 1-2 GB depending on the model). To see the exact hardware volume, use the methods in the following sections.

πŸ“Š How often do you check the memory status on your laptop?
Once a month
Only when you're in trouble.
Never checked.
I don't know how to do that.

Task Manager: detailed information about RAM

Task Manager provides more details about RAM usage, including reserved and cached memory, which is useful if the laptop is slowing down and you suspect a memory leak.

How to open it:

  • πŸ”§ Press Ctrl + Shift + Esc (or Ctrl + Alt + Del β†’ Task Manager).
  • πŸ“ˆ Go to the Performance tab β†’ Memory.

What can I find out:

  • πŸ“Š Total memory is the hardware amount of RAM (e.g., 16 GB).
  • πŸ”„ Used – current load (including background processes).
  • πŸ’Ύ Cacheted memory is the memory that Windows uses to speed up work (it can be freed without risk to the system).
  • 🚫 Equipment reserved: memory allocated to graphics or other components.

Total RAM (should match the characteristics of the laptop)

Memory load percentage (if continuously >80% - it's time to clean the system)

The amount of cached memory (it can be freed manually)

Unusual processes that consume >1 GB (possible viruses)-->

πŸ’‘ Useful tip: If the Task Manager displays significantly less memory than the RedmiBook 8 specs (e.g., 6GB instead of 8GB), this could mean:

  • πŸ”Œ One of the RAM modules is not recognized (check the density of the straps).
  • πŸ› οΈ BIOS has a high redundancy iGPU Memory mode enabled (see Section 4).
  • πŸ› The chipset driver or BIOS is outdated (update via Xiaomi's official website).

3. Third-party utilities: AIDA64, CPU-Z, HWiNFO

For deep memory diagnostics (including RAM type, frequency, and timings, as well as SSD health), it is better to use specialized programs that will show data that is not available through standard Windows tools.

Top-3 utilities for RedmiBook 8:

ProgrammeWhat showsDownload linkPluses
AIDA64Type of RAM (DDR4), frequency, timings, CPU cache volume, SSD parts (protocol, wear and tear).Official websiteFull information and support of the Russian language.
CPU-ZRAM modules (slots, manufacturer), SPD- Data, information about the chipset.Official websiteFree, lightweight, does not require installation (portable version).
HWiNFOMemory temperature, voltage, support for XMP, S.M.A.R.T. SSD.Official websiteReal-time monitoring, exporting reports.

πŸ” How to use (in example CPU-Z):

  1. Download and run the program (select the portable version so you don’t install it).
  2. Go to the Memory tab, where the type (e.g. DDR4-2666) and the total volume are listed.
  3. On the SPD tab, you can see details for each RAM module (manufacturer, serial number, supported frequencies).
  4. To check for an SSD, go to the Mainboard β†’ Storage section.
What if the utility does not see the second module of RAM?
If CPU-Z or AIDA64 only shows one memory module (e.g. 8GB instead of 16GB), the reasons may be: 1. Physical problem: RAM bar is not fully inserted into the slot or damaged. Try reinstalling it (on RedmiBook 8, you need to remove the bottom cover - see section 6). 2. Incompatibility: Modules from different manufacturers or different timings may conflict. Check whether the laptop supports dual-channel mode for your configuration. 3. Settings BIOS: Memory Remap mode is enabled or one of the channels is disabled. Go to BIOS (button F2 when booting) and reset to factory settings (Load Default Settings). 4. Windows Limit: The 32-bit version of the OS does not support more than 4 GB of RAM. Upgrade to 64-bit version.

4. Memory verification via BIOS/UEFI

The BIOS displays hardware memory information before the operating system boots, which is useful for diagnosing problems with recognition of RAM modules or SSD. The RedmiBook 8 uses the UEFI- mouse-enabled AMI interface.

How to log into the BIOS:

  1. πŸ”„ Turn off the laptop.
  2. πŸ”˜ Press and hold the F2 key (in some versions, Del).
  3. πŸ”Œ Turn on the laptop without releasing F2 until the BIOS screen appears.

Where to watch:

  • πŸ“‹ On the Main screen, find the sections:
  • βš™οΈ In the Advanced β†’ System Agent Configuration section, you can configure iGPU Memory.

⚠️ Warning: Changing the settings BIOS without understanding the consequences can cause a laptop to run in an unstable way. For example, if you manually set too much memory for integrated graphics (iGPU Memory = 2GB), it will reduce the amount of RAM available for the system. The optimal value for RedmiBook 8 is 1GB or Auto.

πŸ’‘

If the BIOS displays less memory than you have installed, try resetting to factory settings: go to Exit β†’ Load Default Settings β†’ save the changes (F10).

5. Command Prompt: Memory Checking Without Third-Party Programs

Windows provides built-in tools for diagnosing memory via command line (CMD), which is convenient if you can not install third-party utilities (for example, on a work laptop).

Method 1: Systeminfo Command

systeminfo | findstr /C: "All physical memory"

This command will output a line of form:

Total physical memory: 16,336MB

(Here, 16,336 MB β‰ˆ 16 GB).

Method 2: Verification of SSDs via wmic

wmic diskdrive get size,model

Example of conclusion:

Size          Model


512105932800  KINGSTON OM8PCP3512F-A01

(Here 512105932800 bytes = 512 GB).

Method 3: Memory Test for Errors

If the laptop has become often rebooted or give out β€œblue screens”, check the RAM for errors:

  1. πŸ” Open the command line on behalf of the administrator (Win + X β†’ Command Line (Administrator)).
  2. πŸ“ Enter the command:
mdsched.exe
  1. πŸ”„ Reboot your laptop and start the built-in Windows Memory Diagnostic.
  2. πŸ•’ Wait until the test is completed (it takes 10-15 minutes).

⚠️ Warning: If the test detects memory errors, it may indicate:

  • πŸ”Œ Failure of one of the RAM modules (replacement required).
  • πŸ› οΈ Incompatibility of the slats (if recently upgraded).
  • πŸ”‹ Power problems (e.g., a faulty connector on the motherboard).

πŸ’‘

The wmic command shows the physical volume of the SSD, whereas Windows Explorer may display less because of hidden partitions (for example, to restore the system).

6.Physical Check: How to Open RedmiBook 8 and View Memory

If software methods don’t give a definitive answer (for example, the BIOS shows 8 GB and Windows 6 GB), it may be a problem to physically connect modules. On RedmiBook 8, RAM and SSD are accessed through the bottom cover.

What you need:

  • βš’οΈ Plastic blade (or mediator) to open the lid.
  • ✨ Phillips screwdriver #0 (for screws).
  • 🧲 Antistatic bracelet (optional, but recommended).

Step-by-step:

  1. πŸ”Œ Turn off the laptop and disconnect the charger.
  2. ⚑ Press the power button for 10 seconds to remove static electricity.
  3. πŸ”© Turn over your laptop and unscrew 10 screws on the bottom cover (they can be hidden by rubber legs - tuck them gently).
  4. πŸ•³οΈ Put a plastic lid on the lid, starting at the corner next to the hinges of the screen. Be careful, the latches are fragile!
  5. πŸ–₯️ Under the lid you will see:

πŸ“Έ Photo of the insides of RedmiBook 8:

Under the cover, the RAM modules are on the left, the SSD is on the right (under the metal radiator).

  • πŸ”§ RedmiBook 8 supports up to 16 GB of RAM (2Γ—8 GB) up to 2666 MHz.
  • πŸ’Ύ SSD can be replaced with any NVMe PCIe 3.0 (e.g., Samsung 970 EVO Plus or WD Black SN750).
  • ⚠️ When replacing SSD, be sure to transfer the Windows license (linked to the motherboard).
How to transfer Windows to a new SSD?
1. Connect a new SSD via a USB adapter (e.g., M.2 to USB-C). 2. Download Macrium Reflect Free and create an image of the system drive. 3. Deploy the image to a new SSD. 4. Replace the drive in your laptop and boot from the new SSD. Windows is activated automatically (license is tied to the RedmiBook 8 motherboard).

FAQ: Frequent questions about memory Xiaomi RedmiBook 8

❓ Why does the Task Manager display 7.2GB out of 8GB?
This is normal: part of the memory is reserved for integrated graphics Intel UHD Graphics (usually 0,8-1 GB). To reduce the redundancy, go to BIOS (F2 when booting) β†’ Advanced β†’ System Agent Configuration β†’ iGPU Memory and set the value of 512MB or Auto.
❓ Can I put 32GB of RAM in RedmiBook 8?
No. The maximum supported volume is 16 GB (2Γ—8 GB), and the 10th generation Intel chipset in this model does not support 16 GB modules. When you try to install 32 GB, the system recognizes only 16 GB.
❓ How to check for wear SSD?
Use CrystalDiskInfo (download here). After you run, pay attention to the parameters: Health Status β€” if Good is marked, the disk is fine. Total Host Writes β€” shows how much data is written to the disk for all time. For the RedmiBook 8 SSD, the critical value is ~200 TB (if exceeded, replacement is recommended).
❓ Why did the laptop slow down after the upgrade?
Possible causes: Incompatible modules (different frequencies or timings). Check in CPU-Z in the SPD tab. One of the modules is faulty. Test with mdsched.exe (see section 5). Dual Channel disabled in the BIOS. Go to the BIOS and turn on Memory Mode = Dual Channel.
❓ Where to buy compatible memory for RedmiBook 8?
Recommended RAM modules (verified by users): πŸ›’ Crucial CT8G4SFRA266 (8 GB, 2666 MHz, CL19) β€” Optimal Price/Quality Relationship. πŸ›’ Samsung M471A1K43DB1-CTD (8 GB, 2666 MHz – original modules used in RedmiBook. πŸ›’ Kingston KVR26S19S8/8 (8 GB, 2666 MHz) - budget option. SSD Any NVMe PCIe is suitable 3.0 x4 (for example, WD Blue SN550 Samsung 980). Buy from trusted stores: DNS, Citilink, AliExpress (sellers with a rating) >98%).