• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Add memory to Linux box.

 
Ranch Hand
Posts: 672
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I read some where that Linux supports 64 Mb RAM. If one needs to use/add more memory one has to configure Linux.
Is this true?
Can Linux auto detect added memory?
Thanks
 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mine did. If you running on ix86, you can verify if the memory was installed correctly by pressing one of the function keys (I thinkk F7) wich will take you to the system configuration screen. I think this has nothing to do with Linux. If you see the added memory in this screen, Linux will automatically detect the memory.
Thanks.
 
Bruce Jin
Ranch Hand
Posts: 672
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks MM;
F7 does not do anything on my Mandrake 8.0. I think I can use command 'free' to display total available memory.
 
Ranch Hand
Posts: 776
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Bruce - doing:
cat /proc/meminfo
will show you Linux memory data.
If your BIOS detects newly installed memory, Linux will see it at boot, no need to do anything special.
You can look at /var/log/messages to see how early during boot this occurs.
If your BIOS does not detect added memory, it gets more complicated, but you can tell Linux to use a specific amount of RAM, regardless of what BIOS reports.
Regards, Guy
[ March 01, 2002: Message edited by: Guy Allard ]
 
Bruce Jin
Ranch Hand
Posts: 672
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks Guy!
 
reply
    Bookmark Topic Watch Topic
  • New Topic