I have an AMD Turion and do not know what to choose between these two versions to install Arch Linux. Thank you.

link|improve this question
possible duplicate of Difference between x86_64 and i386 – Sathya Jan 27 '11 at 14:10
feedback

migrated from stackoverflow.com Jan 26 '11 at 16:14

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

3 Answers

up vote 2 down vote accepted

It is the 32 or 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.

link|improve this answer
All clear now. So 32bit should do quite well for me. – Claudiu T. Jan 27 '11 at 11:25
feedback

i686 is an indication of the processor instruction set by generation of processor. For example: Intel Pentium, Intel Core2Duo, AMD K6. i686 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 instructions. 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.

link|improve this answer
feedback

Short answer:

i686 = 32-bit Intel x86 arch 
x86_64 = 64-bit Intel x86 arch
link|improve this answer
This answer is most useful to me, especially when I am already aware the 32bit vs 64bit. The part that threw me off was "i686". Typically, I would expect just simply x86 – Antony 15 hours ago
feedback

Your Answer

 
or
required, but never shown

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