command to check RAM slots in motherboard?
It happened to me once that I ran one of these commands. It told me I had 4 slots. I bought two extra cards, just to open it and find I only had two slots. The other two were blocked. Follow @user253751 advice: open it and check it by yourself
Jun 12, 2024 at 1:07
4 Answers 4
You can use this command:
sudo lshw -class memory
It will give you an output like this:
*-memory description: System Memory physical id: 33 slot: System board or motherboard size: 4GiB *-bank:0 description: DIMM [empty] physical id: 0 slot: ChannelA-DIMM0 *-bank:1 description: DIMM [empty] physical id: 1 slot: ChannelA-DIMM1 *-bank:2 description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns) product: AD73I1C1674EV vendor: Fujitsu physical id: 2 serial: 43D30100 slot: ChannelB-DIMM0 size: 2GiB width: 64 bits clock: 1333MHz (0.8ns) *-bank:3 description: DIMM [empty] physical id: 3 slot: ChannelB-DIMM1
Here in my system I have 4 memory slots in which currently I am using only one slot. In other slots you can see it shows empty .
For maximum supportable memory use:
sudo dmidecode -t 16
sudo dmidecode -t memory
sudo dmidecode | grep -i "Maximum Capacity:" | uniq
EDIT: more interactive way to see Slot use small script (suggested by Serg)
sudo lshw -class memory | awk '/bank/ END '
283 4 4 silver badges 13 13 bronze badges
answered Sep 12, 2015 at 19:08
11.2k 7 7 gold badges 41 41 silver badges 41 41 bronze badges
thanks pl_rock !! my system showing 4 banks and maximum supportable size is 16Gb . it means i can add 4 RAMs of 4Gb ?
Sep 12, 2015 at 19:31
yes, you can do .
Sep 12, 2015 at 19:33
suggesting a small improvement to your answer sudo lshw -class memory | awk ‘/bank/
Sep 13, 2015 at 0:48
@pl_rock No, that’s not always true. Some motherboards, particularly in laptops, will report memory slots in lshw that are supported by the chipset, but which aren’t actually present on your computer’s motherboard. There’s no way to be sure without checking the manufacturer’s specs, or looking inside.
– user450359
Sep 13, 2015 at 3:56
Another way to get all the numbers directly;
To get the total number of slots:
sudo dmidecode -t memory | grep -c '^Memory Device$'
To get the number of slots used:
sudo dmidecode -t memory | grep -c -Po '^\tPart Number: (?!\[Empty\])'
To get the maximum capacity:
sudo dmidecode -t memory | grep -Po '^\tMaximum Capacity: \K.*'
ubuntu@ubuntu ~ % sudo dmidecode -t memory | grep -c '^Memory Device$' 4 ubuntu@ubuntu ~ % sudo dmidecode -t memory | grep -c -Po '^\tPart Number: (?!\[Empty\])' 1 ubuntu@ubuntu ~ % sudo dmidecode -t memory | grep -Po '^\tMaximum Capacity: \K.*' 32 GB
answered Sep 12, 2015 at 19:44
35.8k 13 13 gold badges 102 102 silver badges 151 151 bronze badges
The second command wasn’t useful in my case. This seems more robust : dmidecode -t memory | grep -c ‘Size: No Module Installed’
Apr 21, 2024 at 16:51
@SkippyleGrandGourou exactly!
Jun 2, 2024 at 14:37
The number of memory devices in the results of sudo dmidecode –type 17 is equal to the number of memory slots, so the command to print the number of RAM slots is:
sudo dmidecode --type 17 | grep 'Memory Device' --count
The results of this command will be one integer number equal to the number of RAM slots.
The command to show the size of each of the installed RAM sticks is:
sudo dmidecode --type 17 | grep -i size
This is a very informative command because it shows the number of empty RAM slots, the number of RAM slots that have RAM sticks installed and the size of each installed RAM stick.
The command to show the maximum RAM capacity (the maximum size that you can increase the RAM to) is:
sudo inxi -m | grep capacity
This example output shows that the computer has 4 RAM slots (2 empty slots & 2 full slots), and two 4GB RAM sticks (8GB RAM).
$ sudo dmidecode --type 17 | grep 'Memory Device' --count 4 $ sudo dmidecode --type 17 | grep -i size Size: No Module Installed Size: No Module Installed Size: 4096 MB Size: 4096 MB $ sudo inxi -m | grep capacity Array-1 capacity: 32 GB devices: 4 EC: None
dmidecode shows the number of slots available for the controller. There are up to 4 DMI types, 2 can be memory arrays, and 2 can be specific slots. 2 are less common. The information in dmidecode/inxi is extremely unreliable when it comes to the array data, but the actual slot data is generally very reliable. If you are looking into buying or upgrading RAM, you should always check the product specifications to make sure that what inxi/dmidecode reports is actually correct. This goes in particular for maximum RAM size and array capacities. *
answered Nov 14, 2024 at 12:47
113k 107 107 gold badges 276 276 silver badges 307 307 bronze badges
[Quick Answer]
I use the following command to ckeck:
sudo dmidecode -t 17
# dmidecode 3.0 Getting SMBIOS data from sysfs. SMBIOS 2.7 present. Handle 0x0009, DMI type 17, 34 bytes Memory Device Array Handle: 0x0008 Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 4096 MB Form Factor: SODIMM Set: None Locator: ChannelA-DIMM0 Bank Locator: BANK 0 Type: DDR3 Type Detail: Synchronous Speed: 1600 MHz Manufacturer: Samsung Serial Number: 78111110 Asset Tag: None Part Number: K4B8G1646B-MYK0 Rank: Unknown Configured Clock Speed: 1600 MHz Handle 0x000A, DMI type 17, 34 bytes Memory Device Array Handle: 0x0008 Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 4096 MB Form Factor: SODIMM Set: None Locator: ChannelB-DIMM0 Bank Locator: BANK 2 Type: DDR3 Type Detail: Synchronous Speed: 1600 MHz Manufacturer: Samsung Serial Number: 22800022 Asset Tag: None Part Number: M471B5273CH0-YK0 Rank: Unknown Configured Clock Speed: 1600 MHz
[NOTE]:
You could also use the sudo dmidecode -t 16 to get the summarized details.
geopsy.org
I do not understand the SLOT option in command line interface.
What is the meaning of the slot number in the the following commands:
1) geopsy -db databasename -tool geopsyhv -slot 1 -group groupname
2) geopsy -db databasename -tool geopsyarray -slot 0 -group groupname
In fact I would like to compute High Resolution FK analysis (capon), which value of slot should I select?
admin Site Admin Posts: 749 Joined: Mon Aug 13, 2007 11:48 am Location: ISTerre Contact:
Post by admin » Wed Dec 05, 2007 12:52 pm
Option -h without argument just gives you general information.
Generic options: -help Show help about options. SECTION may be empty or: all, examples, fk, generic, geopsy, hrfk, hv, hvrotate, hvtfa, linearfkactive, linearfkpassive, mspac, qt, spectrum, spectrum, structure
You can get specific help on various topics by adding an argument to option -h.
$ geopsy -h fk FK (tag=geopsyarray, slot=0) options: -param Set processing parameters as specified in FILE.log -export-grids Export all FK grids for all frequency bands and time windows to files fkgrid_fxxx_twxxx (be careful, need a lot of disk space) $ geopsy -h hrfk High resolution FK (tag=geopsyarray, slot=1) options: -param Set processing parameters as specified in FILE.log
In fact, a tool plugin may contain more than one slot (for geopsyarray: fk, hrfk, linearfkactive, linearfkpassive) that correspond each to an icon in the toolbar (or menu “tools”).
To start geopsy for high resolution FK:
geopsy -db /home/mwathele/M2/database.gpy -tool geopsyarray -slot 1 -group "333 sources/Central station" -param param.log
param.log must contain a section with parameters as saved by the high resolution toolbox (after pressing ‘Start’).[/code]
Not only this, they have a vast virtual casino featuring table games, slots and live poker amongst hundreds of other activities.
download apk poker88 android,online craps games,idnpoker via pulsa,download aplikasi poker 88,domino qiuqiu 2020,situs hitam qq,gambling club,mustapha kanit.
Dan favoritkan produk yg juragan minati agar dikemudian hari dapat memudahkan jika ingin transaksi sekaligus notifikasi/pemberitahuan jika produk sedang diskon.
Whether you’re adding a second pair of monitors to your existing studio setup or the BXs are going to be your “go-to”, main loudspeakers, I think they make a good affordable choice.
I would split the difference and check out Savile Row 24mm silvertip, or a similar brush from Thater (4292/4 bulb) or Shavemac (23mm silvertip). The brush size will be roughly 24mm by 54mm in a bulb shape rather than the ~24×48 fan of the Duke 3 or the ~24×58 fan of the Kent.
:
- Link Alternatif CMD368 2024
- Alternatif CMD368
- CMD368 Member Function Log In
- Kontes Seo CMD368
- Apakah CMD368 Penipu