Windows I586 Vs X64

Active4 months ago
  1. Windows I586 Vs X64 10
  2. Windows I586 Vs X64 Free
  3. Windows I586 Vs X64 Version
Windows i586 vs x64 free

I'm downloading some software and it has an i586 version. John Savill Jan 15, 2010. Normally, you see two types of downloads available for Windows platforms: x86 for 32-bit platform and x64 (or AMD64 or x86-64) for 64-bit. The x in x86 means any member of the x86 family, such as 286 (16-bit), 386 (32-bit), 486, and so on, all. ความแตกต่างของ Windows X86 และ Windows X64 – Windows 32 bit และ Windows 64 bit เป็นการอ้างอิงจากการประมวลผลของ Processor (CPU) โดย Windows 64 bit สามารถมองเห็น RAM ได้มากกว่า Windows 32 bit.

I have an AMD Turion and do not know which version to choose from when installing Arch Linux.

Jamal
4561 gold badge6 silver badges17 bronze badges
Claudiu T.Claudiu T.

migrated from stackoverflow.comJan 26 '11 at 16:14

Windows I586 Vs X64 10

This question came from our site for professional and enthusiast programmers.

4 Answers

i686 is the 32-bit version, and x86_64 is the 64-bit version of the OS.

The 64-bit version will scale with memory better, particularly for workloads like large databases which need to use lots of ram in the same process. Do not consider running a (significant) database server on a 32-bit machine.

However, for most other things the 32-bit version is ok. 32-bit code uses up less memory, so you'll have more for other things. The limit on the memory the OS can use is not different, just the memory per process.

So it really depends what you want to use it for. If you're planning on developing software for large servers, or running large servers, use 64-bit. Otherwise use 32.

MarkRMarkR
BradBrad
1,4452 gold badges10 silver badges11 bronze badges

ix86 is an indication of the processor instruction set by generation of processor. For example: Intel Pentium, Intel Core2Duo, AMD K6. ix86 has been around for many years, if you have a processor made after 2000, it probably at least has the i686 instruction set. The absence of other indicators hints that this would be the 32 bit version.

x86_64 is indicating use of 64 bit registers and address space. Only choose this if you have a 64 bit processor and you want to use the 64 bit version of the operating system.

The choice is yours. I believe all AMD Turion processors have 64 bit support. You just need to decide if you want the 64 bit version or the 32 bit version of Arch Linux.

Windows I586 Vs X64 Free

Community
ZusukarZusukar

Basically, the different kernel designations identify which instruction set the compiler was told to optimize for. An i686 CPU can run i586 and i386 instructions, so, as you observed, an i686 can run an i386 kernel. However, it may not execute as optimally as one specifically compiled for an i686.

These are the designations you will typically run into:

x86_64 Processors

  • AMD's Athlon 64, Athlon 64-FX, and Opteron
  • Intel EMT64 processors - Nocona Xeon, Pentium 4's using the E0 revision of the Prescott core (AKA Pentium 4, model F)

i686 Processors * All Intel 32-bit Pentiums (excluding Pentium 1 and Pentium MMX) * All AMD 32-bit Athlons

i586 Processors

  • All 32-bit AMD Ks
  • Pentium 1
  • Pentium MMX

i386 Processors

  • A generic 'lowest common denominator' designation for Intel 80386 compatible CPUs (includes all of the above, but does not take advantage of extended instructions on those later CPUs).
JonathanJonathan
9175 gold badges19 silver badges37 bronze badges

Windows I586 Vs X64 Version

Not the answer you're looking for? Browse other questions tagged architecture or ask your own question.