Linux посмотреть тайминги оперативной памяти

Как посмотреть тайминги оперативной памяти в Linux?

У нас есть 21 ответов на вопрос Как посмотреть тайминги оперативной памяти в Linux? Скорее всего, этого будет достаточно, чтобы вы получили ответ на ваш вопрос.

Ребята, у меня было планка оперативной памяти Kingston на 4 гига. Я хочу купить еще одну такую же. Но я забыл производительность и тайминг.

Как узнать все тайминги оперативной памяти?

Текущие тайминги оперативной памяти можно посмотреть в разделе «Компьютер» — «Разгон». Информацию о поддерживаемых таймингах каждого модуля можно получить в разделе «Системная плата» — «SPD». Раздел включает в себя и дополнительную информацию, в том числе — модели модулей RAM.

Как посмотреть информацию об оперативной памяти Linux?

Простейший способ проверить использование оперативной памяти — посмотреть /proc/meminfo. Это автоматически обновляемый файл, который является источником для таких утилит как free, ps и top. Кроме количества свободной и использованной памяти в /proc/meminfo есть все что можно узнать о памяти.

Как посмотреть сколько оперативной памяти занято Линукс?

Команда free очень простая, она выводит информацию о общем количестве оперативной памяти, о количестве занятой и свободной памяти, а также об использовании файла подкачки. По умолчанию объем памяти выводится в килобайтах. Команда free-m — в мегабайтах-g — в гигабайтах-h — автоматически определить формат26 июл. 2019 г.

Читайте также:  Архитектуру операционных систем linux

Как узнать свободную оперативную память Linux?

Команда free Флаг -s обозначает секунды, и в этом случае команда free выведет данные об использовании оперативной памяти за каждые пять секунд. Опция особенно полезна, если отслеживать использование памяти нужно с заданным интервалом. Останавливается процесс сочетанием горячих клавиш Ctrl +C.

Какой утилитой можно извлечь RAM в ОС Linux?

Среди вариантов: использование нативного модуля ядра Linux Memory Extractor (LiME); скрипт Linux Memory Grabber, который не требует установки и который можно запускать, к примеру, с флешки; связка утилит lmap и pmem, которые входят в пакет Rekall.

Как узнать сколько планок оперативной памяти стоит?

Посмотреть, сколько RAM в ПК, можно и этим классическим средством операционной системы. В «Диспетчере» необходимо отыскать раздел «Производительность», а потом — «Память». Вся информация отобразится в том же окне.

Источник

How to view RAM’s SPD / timings table?

enter image description here

In Linux Mint, how to get the same information presented in the lower half of the below picture? Output by CPU-Z in Windows: What I’ve tried:
Running CPU-Z 1.66 in Wine as Windows 95, 98 and XP.
CPU-G
i-nex
sudo lshw
sudo dmidecode
decode-dimms

With sudo dmidecode -t memory you can find manufacturer and part number and then it’s not hard to find out CAS on the web

1 Answer 1

decode-dimms is probably what you’re looking for, but apparently you need to have the correct i2c module loaded before it works. Follow this tutorial:

I got it working after these steps:

sudo aptitude install i2c-tools sudo modprobe eeprom sudo modprobe i2c-i801 decode-dimms 

in my case eeprom was enough (no sudo modprobe i2c-i801 ), running decode-dimms initially outputs «No EEPROM found, try loading the eeprom or at24 module», so I’ve tried as advised.

Читайте также:  Чем открыть webp linux

You must log in to answer this question.

Linked

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.13.43531

Linux is a registered trademark of Linus Torvalds. UNIX is a registered trademark of The Open Group.
This site is not affiliated with Linus Torvalds or The Open Group in any way.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

How to check RAM timings in linux?

enter image description here

In windows, CPUz provides info about memory timings. Is it possible to view that in linux? Is there any app that can show me the memory timings of the RAM currently installed in my system? EDIT: I want to know the CAS latency. CPUz screenshot:

4 Answers 4

Memtest will show you the timings and I found on the ubuntuforums that i2c-tools will give you what you’re looking for with these commands:

sudo modprobe eeprom decode-dimms 

There is a detailed explanation of how to get RAM specs in Linux here: damieng.com/blog/2020/02/08/ddr4-ram-spd-linux

You can get information about the memory with:

In particular, you can get the clock speed and latency with:

lshw -C memory | grep clock 

That 1.9 ns is the clock interval, not the latency. This tool is reading DMI, you’d need something that reads SPD.

The tool actually reports memory capabilities, not the effective clock. For instance, on my hardware (motherboard supports memory clock up to 1600 MHz) it reports: clock: 2133MHz (0.5ns) (which is the maximum speed my DDR modules can operate at, provided they’re plugged in a more modern MB).

sudo aptitude install i2c-tools sudo modprobe eeprom sudo modprobe at24 sudo modprobe i2c-i801 sudo modprobe i2c-amd-mp2-pci sudo modprobe ee1004 decode-dimms 

decode-dimms needs the correct module to be loaded to be able to read the DIMMs. It is unclear to me exactly which one worked for me, but I guess it depends on the chipset in your machine.

Читайте также:  Linux cli hex editor

Can you please add a source/ give explanation of what those commands do? Your answer appeared on the Low Quality Posts queue.

sudo apt-get install i2c-tools sudo modprobe eeprom decode-dimms # lots of output, including: Decoding EEPROM: /sys/bus/i2c/drivers/eeprom/0-0050 Guessing DIMM is in bank 1 . ---=== Timings at Standard Speeds ===--- tCL-tRCD-tRP-tRAS as DDR3-1600 11-11-11-28 tCL-tRCD-tRP-tRAS as DDR3-1333 9-9-9-24 tCL-tRCD-tRP-tRAS as DDR3-1066 7-7-7-19 tCL-tRCD-tRP-tRAS as DDR3-800 6-6-6-14 

Note: this is a working (on my system) guide made from analogous QA https://unix.stackexchange.com/questions/92037/how-to-view-rams-spd-timings-table, mostly info was mentioned here already, but «Ubuntu» link is not working, so I decided to write my own answer.

$ decode-dimms Command 'decode-dimms' not found, but can be installed with: sudo apt install i2c-tools $sudo apt-get install i2c-tools $ decode-dimms No EEPROM found, try loading the eeprom or at24 module 

Источник

Оцените статью
Adblock
detector