RAM 은 다양한 유형, 용량, 속도 및 브랜드로 제공됩니다. RAM 을 업그레이드 하거나 시스템이 특정 최소 요구 사항을 충족하는지 확인해야 하는 경우 PC 의 RAM 유형을 확인해야 합니다. (RAM)전문 용어와 숫자가 처음에는 어려워 보일 수 있지만 실제로 시스템에 장착된 RAM 을 결정하는 것은 상당히 쉽습니다.(RAM)
RAM 집중 과정
컴퓨터에 장착된 RAM 유형을 확인하는 방법에 대해 자세히 알아보기 전에 모두 같은 페이지(page) 에 있는지 확인하는 것이 중요합니다 . RAM 또는 Random Access Memory 는 매우 빠른 컴퓨터 저장 장치의 특별한 유형입니다.
이는 상대적으로 느리고 비휘발성인 하드 드라이브와 다릅니다. (non-volatile.)즉, 전원이 꺼져도 하드 드라이브의 데이터는 손실되지 않습니다. 반면에 RAM 은 (RAM)휘발성(volatile) 입니다. 짐작할 수 있듯이 전자가 흐르지 않으면 데이터가 사라집니다.
RAM 은 (RAM)CPU (중앙 처리 장치(Processing Unit) )가 처리해야 하는 다음 데이터 세트에 신속하게 액세스해야 하기 때문에 컴퓨터에서 매우 중요 합니다. 따라서 응용 프로그램과 관련 데이터가 RAM 에 로드되어 컴퓨터가 최고의 성능을 발휘할 수 있습니다.
RAM 의 기술적 세부 사항에 대해 더 알고 싶다면 RAM 메모리 유형 및 사용 방법 이해(Understanding Types Of RAM Memory & How It’s Used) 를 확인하십시오 .
마더보드 설명서(Motherboard Manual) 또는 웹사이트(Website) 확인
업그레이드 목적으로 컴퓨터가 지원하는 메모리 유형을 알고 싶다면 마더보드 설명서에서 해당 정보를 찾을 수 있습니다.
마더보드의 모델 번호를 Google에서 제품 페이지를 찾을 수도 있습니다. 지원 하는 정확한 RAM 유형이 나열됩니다 . 이것이 현재 시스템에 설치된 RAM 의 정확한 속도와 용량을 알려주지는 않지만 시스템이 지원 하는 DDR 유형과(type of DDR) 지원하는 속도로 알려줍니다. 또한 설치할 수 있는 최대 RAM 용량도 알려주어야 합니다 .
CPU-Z를 사용하여 RAM 유형 확인
이 정보를 얻는 가장 쉬운 방법 중 하나는 CPU-Z(CPU-Z) 라는 무료 응용 프로그램을 사용하는 것 입니다. 우리는 시스템에 대한 가장 중요한 기술적 세부 사항을 신속하게 확인하기 위해 수년 동안 그것을 사용해 왔습니다. CPU-Z 를 다운로드하여 설치한 후 프로그램을 실행하고 여기에 표시된 대로 메모리(Memory) 탭을 선택합니다.
"일반" 섹션에서 "유형"을 확인합니다. 이것은 시스템에 설치된 DDR(DDR) 메모리의 세대를 알려줍니다 . "크기"에서 설치된 RAM 의 양을 확인할 수 있습니다.
다음으로 "SPD" 탭으로 전환합니다. 여기에 각 개별 RAM(RAM) 모듈 에서 보고한 대로 정보가 표시됩니다 . 시스템의 모든 모듈이 동일한 경우 "메모리 슬롯 선택" 드롭다운에서 모듈 간에 전환할 필요가 없습니다.
여기에서 볼 수 있듯이 이 컴퓨터는 각 모듈이 8GB RAM 을 차지하는 Samsung 메모리를 사용하고 있습니다. 이 시스템은 DDR4-2667 RAM 을 사용하고 있습니다. 메모리 슬롯 선택(Memory Slot Selection) 드롭다운 메뉴 에서 사용 가능한 슬롯 수를 계산하여 확인할 수 있습니다 .
창 하단에 있는 타이밍 테이블(Table) 에 대해 걱정할 필요는 없지만 이 숫자가 무엇을 의미하는지 궁금하다면 RAM 오버클럭(RAM overclocking) 기사 에서 더 자세히 알아볼 수 있습니다 .
명령 프롬프트(Command Prompt) 또는 PowerShell 에서 RAM 정보(RAM Info) 가져 오기
때로는 Windows(Windows) 의 그래픽 사용자 인터페이스에 액세스할 수 없거나 단순히 명령 프롬프트(Command Prompt) 의 차갑고 무한한 검은 깊이를 선호하는 상황에 갇히게 됩니다 . 어느 쪽이든, 현재 시스템에 설치된 것을 볼 수 있는 명령 프롬프트 지침이 있습니다. (Command Prompt)다음을 입력하기만 하면 됩니다.
wmic MEMORYCHIP은 BankLabel, DeviceLocator, 용량, 속도를 얻습니다.(wmic MEMORYCHIP get BankLabel, DeviceLocator, Capacity, Speed)
여기에서 볼 수 있는 각 RAM 모듈에 대한 세부 정보가 표시됩니다.(RAM)
이것은 각 메모리 모듈의 크기와 속도를 보여주지만 메모리 유형을 알려주지는 않습니다. 해당 정보를 원하면 명령에 몇 비트를 추가해야 합니다.
wmic MEMORYCHIP get BankLabel, DeviceLocator, MemoryType, TypeDetail, 용량, 속도(wmic MEMORYCHIP get BankLabel, DeviceLocator, MemoryType, TypeDetail, Capacity, Speed)
MemoryType 아래 에 숫자 코드가 표시됩니다. 이 코드는 시스템 의 DDR 유형을 알려줍니다 .
- 22 – DDR2
- 25 – DDR3
- 26 – DDR4
이는 가장 일반적인 RAM 유형 중 일부일 뿐이지만 위에 나열되지 않은 숫자가 표시 되면 Microsoft 설명서에서 메모리 유형 코드(memory type codes) 의 전체 목록을 찾을 수 있습니다 .
명령 프롬프트 는 (Command Prompt)PowerShell 을 위해 단계적으로 폐지되고 있습니다. 원하는 경우 사용할 수 있지만 명령은 약간 다릅니다.
Get-CimInstance -ClassName Win32_PhysicalMemory | Format-Table Capacity, Manufacturer, MemoryType, FormFactor, Name, Configuredclockspeed, Speed, Devicelocator, Serialnumber -AutoSize
BIOS 확인
PC가 사용하는 운영 체제에 관계없이 시스템 을 부팅하기 전에 시스템에서 사용 하는 RAM 유형에 대한 정보를 얻을 수 있는 경우가 많습니다 . 컴퓨터 BIOS 에는 일반적으로 설치된 (BIOS)RAM 에 대한 세부 정보를 표시해야 하는 메모리 섹션이 있습니다 . 여기에는 일반적으로 사용 중인 DDR 의 생성 , 각 모듈의 크기 및 작동 속도가 포함됩니다.
BIOS 진입(entering the BIOS) 방법 은 컴퓨터마다 다릅니다. 일반적으로 컴퓨터 전원이 켜진 직후 간단한 키 누름입니다. 예를 들어, BIOS 에 들어가려면 Delete 키나 F12 키를 반복적으로 눌러야 합니다 . 특정 키는 일반적으로 컴퓨터가 시작될 때 화면에 표시되지만 마더보드 설명서에도 있습니다.
모듈의 노치(Notches) 및 핀 확인(Pins)
컴퓨터 의 RAM 유형을 확인하는 마지막 방법 은 메모리 모듈을 물리적으로 검사하는 것입니다. 여기에는 슬롯에서 제거하는 작업이 포함되므로 프로세스에 익숙해지는 경우에만 수행하십시오.
RAM 모듈 의 세부 정보는 DIMM 에 부착된 레이블에서 읽을 수 있지만 이 그림과 같이 노치 위치로 식별할 수도 있습니다.
노트북 RAM은 어떻습니까?
위에 작성된 내용의 대부분은 랩톱 RAM 에 적용됩니다. 적어도 Windows 10 에서 (Windows 10)RAM 유형 을 확인하는 소프트웨어 기반 방법에 관해서는 . 물리적 식별 방법과 관련하여 이러한 모바일 RAM 모듈은 데스크톱 모듈과 다르게 보입니다. 일반적으로 업그레이드 가능한 SODIMM 모듈이거나 노트북의 메인보드에 분리되지 않고 납땜되어 있습니다.
특히 랩톱 RAM(RAM) 에 대한 자세한 내용 은 구형 랩톱을 업그레이드할 수 있습니까?(Can You Upgrade an Old Laptop) 를 확인하십시오 .
당신의 유형은 무엇입니까?
시스템에 어떤 유형의 RAM(RAM) 이 있는지 알면 컴퓨터의 성능이 어떠해야 하고 얼마나 업그레이드할 수 있는지 파악할 수 있습니다.
RAM 속도가(RAM speed has on) 실제 응용 프로그램 에 미치는 영향에 대해서는 항상 약간의 논쟁이 있지만, 시스템이 더 높은 등급의 RAM 속도를 지원하고 특히 응용 프로그램이 이점을 누릴 수 있다면 이 정보를 얻을 가치가 있습니다.
How to Check the Type of RAM in Your Windows PC
RAM comes in various types, capacities, speeds and brands. If you ever want to upgrade your RAM or need to verify whether your system meets certain minimum requirements, you’ll have to check the type of RAM in your PC. While the jargon and numbers might seem daunting at first, it’s actually fairly easy to determine what RAM your system is equipped with.
A Crash Course on RAM
Before we get into the details of how to check the type of RAM your computer is equipped with, it’s important to make sure we’re all on the same page. RAM or Random Access Memory is a special type of very fast computer storage.
It’s different from your hard drive, which is relatively slow and non-volatile. That is, your hard drive doesn’t lose its data when the power is turned off. RAM, on the other hand, is volatile which, as you’ve probably guessed, means that its data disappears when the electrons stop flowing.
RAM is crucial in a computer, because the CPU (Central Processing Unit) needs to have swift access to the next set of data it has to process. So applications and relevant data are loaded into RAM, which ensures the computer can perform at its peak.
If you want to know more about the technical details of RAM, check out Understanding Types Of RAM Memory & How It’s Used.
Checking Your Motherboard Manual or Website
If you just want to know what type of memory your computer supports, perhaps for the purposes of an upgrade, you can find that information in the motherboard’s manual.
You can also Google the motherboard’s model number to find its product page. That will list the exact types of RAM that it supports. While this doesn’t tell you the exact speed and capacity of the RAM that’s currently installed in the system, it does tell you what type of DDR the system supports and at which speeds it supports it. It should also tell you what the maximum amount of RAM you can install is.
Use CPU-Z to See Your RAM Type
One of the easiest ways to get this information is by using a free application called CPU-Z. We have been using it for years to quickly check the most important technical details about a system. After downloading and installing CPU-Z, run the program and select the Memory tab as shown here.
Under the “General” section, look at “Type”. This tells you what generation of DDR memory your system has installed. Under “Size” you can see how much RAM is installed
Next, switch to the “SPD” tab. This is where the information is displayed as reported by each individual RAM module. If all the modules in your system are identical then you don’t need to switch between them under the “Memory Slot Selection” dropdown.
As you can see here, this computer is using Samsung memory with each module accounting for 8GB of RAM. This system is using DDR4-2667 RAM. You can check the number of available slots by counting them in the Memory Slot Selection dropdown menu.
You don’t have to worry about the Timings Table in the lower half of the window, but if you are curious about what those numbers mean, you can find out more in our RAM overclocking article.
Getting Your RAM Info from the Command Prompt or PowerShell
Sometimes you’re stuck in a situation where you don’t have access to the graphical user interface of Windows or perhaps you simply prefer the cold, infinite black depths of the Command Prompt. Either way, there’s a Command Prompt instruction that lets you see what’s currently installed in your system. All you have to do is type:
wmic MEMORYCHIP get BankLabel, DeviceLocator, Capacity, Speed
This shows you details for each RAM module as you can see here.
This shows you the size and speed of each memory module, but doesn’t tell you the type of memory. If you want that information, we need to add a few bits to the command.
wmic MEMORYCHIP get BankLabel, DeviceLocator, MemoryType, TypeDetail, Capacity, Speed
Under MemoryType you’ll see a number code. This code tells you what type of DDR the system has:
- 22 – DDR2
- 25 – DDR3
- 26 – DDR4
That’s just a selection of the most common RAM types, but if you see a number not listed above you can find a full list of memory type codes in Microsoft’s documentation.
Command Prompt is being phased out in favor of PowerShell, if you prefer to use that you can, but the command is a little different:
Get-CimInstance -ClassName Win32_PhysicalMemory | Format-Table Capacity, Manufacturer, MemoryType, FormFactor, Name, Configuredclockspeed, Speed, Devicelocator, Serialnumber -AutoSize
Check the BIOS
Regardless of what operating system your PC uses, you can often get information on what type of RAM your system uses before you even boot into it. The computer BIOS will usually have a section for memory, which should show you details about the installed RAM. This typically includes the generation of DDR you’re using, what size each module is and the speed at which it operates.
The method for entering the BIOS differs between computers. It’s usually a simple key press right after the computer powers on. For example, you many have to repeatedly tap the Delete key or perhaps F12 to enter the BIOS. The specific key is usually shown on-screen just as the computer starts, but it will also be in the motherboard manual.
Look at the Module’s Notches and Pins
The final way to determine which type of RAM your computer has is to physically inspect the memory modules. This will involve removing them from their slots, so only do this if you are comfortable with the process.
The details of the RAM modules may be readable on a label attached to the DIMM, but you can also identify them by the location of the notch, as seen in this illustration.
What About Laptop RAM?
Most of what’s written above applies to laptop RAM, at least when it comes to the software-based methods to check RAM type on Windows 10. When it comes to the physical identification methods, these mobile RAM modules look different from desktop ones. Usually they are either upgradable SODIMM modules or are non-removable and soldered to the laptop’s mainboard.
Check out Can You Upgrade an Old Laptop for more information on laptop RAM specifically.
What’s Your Type?
Knowing what type of RAM your system has empowers you to get a picture of what your computer’s performance should be and how far you can upgrade it.
There’s always some debate on how much impact RAM speed has on real-world applications, but then again if your system supports a higher class of RAM speed and your applications in particular can benefit from it, it’s worth having this information.