Installed memory ≠ usable size?


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory Installed memory ≠ usable size?
# 1  
Old 07-02-2009
Installed memory ≠ usable size?

I was configuring my BIOS after installing 2 GB of RAM, and I saw this:
Code:
System memory
Installed size : 4096MB
Usable size    : 3584MB

I have a 64-bit OS (Ubuntu 9.04 64-bit), so does that mean the motherboard (ASUS M3A78-T) doesn't support more than 4 GB of addressing?
# 2  
Old 07-03-2009
You installed 2 GB and you're wondering if "only" 4 is supported? Strange question.

Are you concerned about the "usable size"? This is most likely video RAM and the space allocated by the BIOS.
# 3  
Old 07-03-2009
Tools if it was me ....

If it was me, I would grab a linux distro that has a memory checker like knoppix.net . Next run a memory test. This will give you the allot better idea on the status of the RAM. Most MB only support X many gig, and have flash upgrades. I highly recommend having someone who knows what they are doing to do most motherboard flashes. Seen my share of DOA boards from flashes that went wrong.
# 4  
Old 07-05-2009
Quote:
Originally Posted by otheus
You installed 2 GB and you're wondering if "only" 4 is supported? Strange question.
I had 2 GB installed and I was installing 2 GB more. Only 3.5 showed up, which should not be the case if the computer is using "64-bit" (actually usually just 48-bit?) addressing.
# 5  
Old 07-06-2009
If you install a 32-bit with PAE kernel, you'll be able to see all the memory also.

No, I think the problem is the video ram.
# 6  
Old 07-07-2009
Quote:
Originally Posted by otheus
No, I think the problem is the video ram.
If I can only address 32 bits, then clearly the 512 MB loss is for the video RAM. But if I could address 48 bits, that wouldn't be a problem. Right?

Or am I missing something?
# 7  
Old 07-07-2009
Quote:
But if I could address 48 bits, that wouldn't be a problem. Right?
You have only 4 GB of RAM installed. You can't get more RAM than what you have installed. If the OS sees 3.5 GB, it correctly sees how much is physically available to it.

A single process will have only 2 GB available to it unless you install some kernel patches which move the shared-memory boundary. On the other hand, if you use shared memory (for postgres, oracle, maybe mysql, large virtual ram disk), you can utilize all of the memory currently in your system.

If you want to expand another gigabyte or so, you'll need PAE or a 64-bit OS.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Installed Memory 32GB but shows only 16GB

Hello facing this problem in VIOS installed memory shows 32GB Installed system memory: 32 GB (32768 MB) Configurable system memory: 16 GB (16384 MB) Current memory available: 2.23 GB (2288 MB) Pending memory available: 2.23 GB (2288 MB) Reserved firmware memory: 560 MB ... (8 Replies)
Discussion started by: filosophizer
8 Replies

2. Programming

Size of memory used by a program

Hello, Here is a portion of my code: a=(int *) malloc(dim*dim*sizeof(int)); b=(int *) malloc(dim*dim*sizeof(int)); c=(int *) malloc(dim*dim*sizeof(int)); for(i=0;i<dim;i++) for(j=0;j<dim;j++) c= rand(); for(i=0;i<dim;i++) for(j=0;j<dim;j++) b=rand(); ... (6 Replies)
Discussion started by: chercheur111
6 Replies

3. Solaris

T5220 How to determine physical memory installed?

Hi, looking to upgrade memory on a pair of T5220's from 32GB to 64GB. Cannot determine current DIMM size and slots used. i.e. not sure if Qty 16 x 2GB or Qty 8 x 4GB. If there are no empty slots, i need to go with higher density DIMMs and retire exsisting the 2GB prtdiag follows. #... (3 Replies)
Discussion started by: edrew
3 Replies

4. UNIX for Dummies Questions & Answers

Getting file size from memory

i want to avoid writing to a file on the disk. i'd like to do this in memory. i have a situation where i'm running cat file.txt | head -l 2024 > /tmp/data.txt now, i check the size of the data.txt by doing a "du -sh /tmp/data.txt how can i get the size of "head -l 2024" WITHOUT having to... (2 Replies)
Discussion started by: SkySmart
2 Replies

5. Solaris

Memory or CPU size

Is there a command or file I can look at that tells me how much real memory a machine has? A little background. In my shop we run a bunch of java programs, sometimes some of these jobs have config definitions that call for 2G. I would like to know how many I can run before I exhaust rescources. Any... (12 Replies)
Discussion started by: Harleyrci
12 Replies

6. UNIX for Advanced & Expert Users

Out of Memory error when free memory size is large

I was running a program and it stopped and showed "Out of Memory!". at that time, the RAM used by this process is around 4G and the free memory size of the machine is around 30G. Does anybody know what maybe the reason? this program is written with Perl. the OS of the machine is Solaris U8. And I... (1 Reply)
Discussion started by: lilili07
1 Replies

7. Shell Programming and Scripting

User perl to get memory installed in a machine

I currently have a statistics gathering script i run on my Linux servers. One of the stat i gather is total memory in the machine. The script is all perl with the exception of gathering the memory for that i use the following command: $ram = (`cat /proc/meminfo | grep "MemTotal" | awk... (1 Reply)
Discussion started by: insania
1 Replies

8. UNIX for Advanced & Expert Users

memory size under AIX

Hi, how to know size of physical memory under AIX ? Many thanks. PS : man -k memory man : 0703-310 Fichier man introuvable. uname -a AIX server1 1 5 005202DF4C00 (3 Replies)
Discussion started by: big123456
3 Replies

9. UNIX for Dummies Questions & Answers

Size of Installed RAM ?

Is it possible from the command line, or by looking at one of the log files to find out the amount of RAM installed on my SCO Unix 5.05 Server? I also need to find out H/Disk size and Processor speed but I think i'll do a search of the forums for those ones. Thanks RamblasPro (2 Replies)
Discussion started by: RamblasPro
2 Replies

10. UNIX for Dummies Questions & Answers

How to get amount of memory installed.

Hi! I'm not a UNIX fanatic but I like using it for the Oracle database since it's not stable in the Windows NT environment (what is?). Problem: Is there any command to show me the amount of installed physical-memory in the machine? Is there some other way to show the processes which uses... (4 Replies)
Discussion started by: elgholm
4 Replies
Login or Register to Ask a Question