2

Packages

i386, ia64, i636, x86_64, i486, amd32, amd64, sparc, powerpc, arm, noarch... am I missing anything?

Processors

  • intel - atom, i5, i7
  • nvidia - tegra
  • amd - 32, 64 am I missing anything?

Questions

  1. Can someone help me match the package with the processor?
  2. Which processors are 64bit?
  3. Can I run 32bit packages on 64bit processors?
N.N.
  • 18,589

3 Answers3

7

This is a very broad question, I'll try to answer it making groups.

1.- Big Iron, old architectures, you shouldn't care about them unless you're into them.

  • sparc -> Sun Sparc, a cpu for big iron
  • powerpc -> Power PC, you're only likely to find it in old macs.
  • ia64 -> Itanium, again you are not going to find this in a PC.

2.- Not PC, but a very current and used architecture:

  • arm -> Arm, you will find this CPUs everywhere, from phones and tablets to TVs and routers. But not in what is normally called a PC. The NVidia Tegra is an Arm CPU integrated with a couple of other chips, including a GPU.

3.- 32 bits PC architecture, the packages that you should use if you installed Ubuntu 32 bits, but that can also work on 64 bits. Older Atoms (series Z5xx, Z6xx, N2xx and 2xx) are 32 bits CPUs:

  • i386 -> Intel 386 CPU or compatible, includes anything from the last 20 years.
  • i686 -> Intel Pentium M, newer and compatible chips. Your usually AMD or Intel chip is going to be able to handle them.
  • amd32 -> AMD 32, any processor that you can find today will be able to use that package.

4.- 64 bits PC architecture, you can only use this if you have a 64 bits CPU and a 64 bits Ubuntu installed. Most if the Atoms, all i5, i7 and all current AMD processors are here.

  • x86_64 -> Any 64 bits CPU computer, you will need a 64bits cpu (most of the newer ones), and a 64 bit version of Ubuntu installed.
  • amd64 -> It's just another name for x86_64.

5.- Everyody can use them:

  • noarch -> This packages are usually scripts, files or programs in some interpreted language, they will be useful to any computer.
Javier Rivera
  • 35,434
3

You seem to be misunderstanding processor with architecture. A processor is hardware component. An architecture is the "machine language" it understands: its set of instructions, registers size, etc.

So, different processors, from different families, can "speak" the same "language", meaning that they understand same binary code and act accordingly. For example, both (ancient) 386 and 486 processors understand i386 code. Pentium introduced some "extensions", like MMX, SSE, etc.

Some processors also understand more than one instruction set, for backwards-compatibility: for example, all modern AMD (and Intel) CPUs are compatible with both i386 and amd64.

A detailed list of architectures (with links to which processors support them) can be found here: http://en.wikipedia.org/wiki/List_of_CPU_architectures

Last but not least, for your last question, the answer would be: yes, you can run 32bit packages in 64bit processors, since most will understand both architectures, as long as your OS is also 32-bit!

MestreLion
  • 20,726
2

In general, things ending in "86" or "32" are 32-bit and things ending in "64" are 64 bit.

So, i386, i486, x86, i686 and AMD32 are 32-bit. And IA64, x64, x86-64 and AMD64 are 64-bit.

PowerPC can be 32-bit or 64-bit depending on the model.

ARM is 32-bit.

SPARC can be either depending on the model.

Processors can vary as well. Depending on the model, the Intel Atom processors can either be 32-bit or 64-bit.

Starting with the Core2 processors, all of Intel's newest processors are 64-bit. This includes the Core i3, i5, i7 series.

Tegra uses ARM, so it's a 32-bit model as well.

In general, you can run 32-bit applications on 64-bit processors. The compatibility issue arises with a 64-bit operating system. Ubuntu comes in both 32-bit and 64-bit variants, and not all 32-bit software will run in a 64-bit operating system. Developers often make compatibility packages that you can use. Here is an Ubuntu documentation article discussing the differences between 32-bit and 64-bit on Ubuntu. See the bottom for compatibility options.

Kris Harper
  • 13,705