![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Fedora 9 tools demystify installation and upgrades | iBot | UNIX and Linux RSS News | 0 | 05-22-2008 11:40 AM |
| Linux(Suse) Upgrades | benefactr | Linux | 1 | 01-24-2008 10:59 AM |
| IBM upgrades z/OS mainframe operating system - SearchDataCenter.com | iBot | UNIX and Linux RSS News | 0 | 08-15-2007 09:10 PM |
| IBM upgrades z/OS mainframe operating system - SearchDataCenter.com | iBot | UNIX and Linux RSS News | 0 | 08-15-2007 10:10 AM |
| RedHat remote upgrades | ArkiMage | UNIX for Advanced & Expert Users | 1 | 08-06-2002 12:12 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hardware Upgrades..
Quick question would it effect Linux if I upgraded my Ram from 128RD Ram to 256RDRAM (I'm going to simply pop in a second 128 RAM chip)...would I need to change any configuration options etc or would Linux detect all this with no problem?
|
| Forum Sponsor | ||
|
|
|
|||
|
That's depends on the kernel version you have. Some kernels below 2.2.7 (I think) had to be notified by lilo about the Memory size. here's an example:
# lilo.conf boot=/dev/hda map=/boot/map install=/boot/boot.b vga=791 default=linux keytable=/boot/us-latin1.klt lba32 prompt timeout=50 message=/boot/message menu-scheme=wb:bw:wb:bw image=/boot/vmlinuz label=linux root=/dev/hda2 append=" mem=64M)" read-only other=/dev/fd0 label=floppy unsafe Note the append= line. If linux don't recognize your entire memory, insert the append line, but the size must be exactly the size of your available physical memory, if you put less memory, you will not use all memory, if you put more, you will experience a kernel panic. In your case put, after image=<kernel image>: append="mem=128M)" but only if linux refuses to recognize your memory size correctly Regards HTT |