Answer by kucer for detect number of RAM channels
I tried out dmidecode dmidecode -t memory Fortunately, the row Bank Locator: SOCKET 1 CHANNEL 7 DIMM 0 tell DIMM 170 was in Channel 7. And the machine support 32 DIMM with total 8 channels. The...
View ArticleAnswer by user2421169 for detect number of RAM channels
# dmidecode -t memory | grep Bank Bank Locator: P0_Node0_Channel0_Dimm0 Bank Locator: P0_Node0_Channel0_Dimm1 Bank Locator: P0_Node0_Channel1_Dimm0 Bank Locator: P0_Node0_Channel1_Dimm1 Bank Locator:...
View ArticleAnswer by krt for detect number of RAM channels
Do the dmidecode command but specify which type to use, like this: $ sudo dmidecode -t memory | grep Size This is the output from my system, I have a total of four channels and atm using two. Size:...
View Articledetect number of RAM channels
I'm trying to determine (without physically having access to a machine) the number of RAM channels it supports (single, dual, etc) - AND whether it is configured to use that setup, e.g with four slots...
View ArticleAnswer by Thiago Conrado for detect number of RAM channels
The best way to check if the motherboard is single, dual, triple or quad capable is to grab the motherboard name and check the manual specifications.Dual, Triple or quad channel are limited by the...
View ArticleAnswer by xendi for detect number of RAM channels
People giving "Interleaved Data Depth" as the answer are not correct. Interleaved Data Depth either is not the correct indicator or is very commonly misreported (If it's reported at all).An easy way to...
View ArticleAnswer by Louis Waweru for detect number of RAM channels
I agree with Conrado that should read the manual. My manual specifically says I am free to mix the size of DIMMs in a single channel set.However my processor states that this is not allowed because it...
View Article