I bought a new 512MB model from The MCM Electronics Teamwww.mcmelectronics.com.
I am able to boot successfully, but when looked in the task manager it shows total memory as "183MB" . Am I having 512MB system?
How do we see the RAM of the system?
thanks,
Jeeva
Re: How to find the RAM size?
check the chip on the Pi
if it has 2G in the number, it's 256MB (i.e. 2Gbit) if it has 4G in it's number, it's 512MB (4Gbit)
what the OS tells you is what has been allocated to the CPU
another way
cat /proc/cpuinfo
if the revision is less than 0010 - it's a 256MB - that's the theory that was posted by someone in the know here somewhere, he added that some 512MB boards came with a revision of 0005 (mine did), later firmware reports them as 000f
if it has 2G in the number, it's 256MB (i.e. 2Gbit) if it has 4G in it's number, it's 512MB (4Gbit)
what the OS tells you is what has been allocated to the CPU
another way
cat /proc/cpuinfo
if the revision is less than 0010 - it's a 256MB - that's the theory that was posted by someone in the know here somewhere, he added that some 512MB boards came with a revision of 0005 (mine did), later firmware reports them as 000f
I now own 2 RPi - does that mean I own a circumference?
- pluggy
- Posts: 3635
- Joined: Thu May 31, 2012 3:52 pm
- Location: Barnoldswick, Lancashire,UK
- Contact: Website
Re: How to find the RAM size?
Depend on what image you're using you'll probably need some tweaking to be able to use most of it for the CPU. I just explained it here : http://www.raspberrypi.org/phpBB3/viewt ... 18#p198518
Don't judge Linux by the Pi.......
I must not tread on too many sacred cows......
I must not tread on too many sacred cows......
-
- Posts: 2
- Joined: Mon Feb 04, 2013 7:41 am
Re: How to find the RAM size?
Hi,
I have a Pi model B uses hynix ram.
H9TKNNN2GDMP
LRNOM 217A
What is rom size?
Thank you.
I have a Pi model B uses hynix ram.
H9TKNNN2GDMP
LRNOM 217A
What is rom size?
Thank you.
- pluggy
- Posts: 3635
- Joined: Thu May 31, 2012 3:52 pm
- Location: Barnoldswick, Lancashire,UK
- Contact: Website
Re: How to find the RAM size?
It doesn't have a ROM as such. Theres a small bootloader built into the GPU which then drags most of the firmware from the small Partition on the SD card.nguyenlinh wrote:Hi,
I have a Pi model B uses hynix ram.
H9TKNNN2GDMP
LRNOM 217A
What is rom size?
Thank you.
The RAM size with that chip is 256MB.
Don't judge Linux by the Pi.......
I must not tread on too many sacred cows......
I must not tread on too many sacred cows......
-
- Posts: 2
- Joined: Mon Feb 04, 2013 7:41 am
Re: How to find the RAM size?
Sorry, i ask about ram size.pluggy wrote: It doesn't have a ROM as such. Theres a small bootloader built into the GPU which then drags most of the firmware from the small Partition on the SD card.
The RAM size with that chip is 256MB.
Thank you for your answer.
- socialdefect
- Posts: 110
- Joined: Mon Jun 25, 2012 9:02 pm
- Location: Tilburg, the Netherlands
- Contact: Website
Re: How to find the RAM size?
If you are not a Linux Guru (yet) and like to view specs and performance you might like the following tools:
Most people just starting out with Unix/Linux like the lshw command. I believe the GUI interface for it is called lshw-gui and can be installed using your distro's package manager (apt-get, synaptic, app-center, pacman etc...). It has quite a human readable and complete output of your hardware.
For looking at performance conky, Gkrellm and top are very usable and quite user friendly. Gkrellm is a GUI application, conky can be used on the command-line and GUI but is configured using a config file and is atarted from a script, autostart folder or command-line. Top is a very simple process manager started from the commandline and is included in all Linux distro's, just type: top for all output or: top -u username to see processes for a specific user. Exit top by pressing Q or [ctrl]+Z.
Most people just starting out with Unix/Linux like the lshw command. I believe the GUI interface for it is called lshw-gui and can be installed using your distro's package manager (apt-get, synaptic, app-center, pacman etc...). It has quite a human readable and complete output of your hardware.
For looking at performance conky, Gkrellm and top are very usable and quite user friendly. Gkrellm is a GUI application, conky can be used on the command-line and GUI but is configured using a config file and is atarted from a script, autostart folder or command-line. Top is a very simple process manager started from the commandline and is included in all Linux distro's, just type: top for all output or: top -u username to see processes for a specific user. Exit top by pressing Q or [ctrl]+Z.
== If it's not broke... I'm not done fixing it! ==
Re: How to find the RAM size?
I personally use a small perl script to look for the specification of the device. Search for a little script called "sysinfo.pl" by Imbe and type "perl sysinfo.pl"
Re: How to find the RAM size?
Ctrl+Z does not exit top (or any other program). It suspends the currently running command/program so you can get back to your shell prompt. Top is still there in the background, type fg to bring it back to the foreground. You may be thinking of Ctrl+C which does terminate a running program.socialdefect wrote:Exit top by pressing Q or [ctrl]+Z.