eli5: difference between 32 bit and 64 bit OS.

279 views

eli5: difference between 32 bit and 64 bit OS.

In: 6

8 Answers

Anonymous 0 Comments

It’s not really the OS that is different, but the underlying hardware.

Deep inside your CPU, there are lines that connect the various components together. These are called “bus”, and buses are designed with a specific bit width. This determines how much information your computer can operate on with a single instruction, as well as total amount of memory it can address at once.

Since the operating system is the piece of software that basically does the most direct interactions with the hardware, especially in terms of memory management, it needs to match the underlying bit width of the hardware to operate correct. For example, a 32 bit operating system can address up 4 gigabits ram (2^32), meaning that it can’t use any more even if you would have it installed.

You are viewing 1 out of 8 answers, click here to view all answers.