-1

I have laptop with this processor and i have 6 GB of ram + many space but my machine is AMD64 but i need version that can run on AMD A6-3410MX (When i check architecture it show Llano)

1 Answers1

1

You're misinterpreting "Architecture". Llano is the codename of the series of processor. It is not the actual architecture.

Googling the CPU you have yields useful information (from sites such as this one). The two things you have to look for in data such as this are the following:

  1. What's the architecture? (x86 means standard processors that are AMD/Intel, and not special chips like ARM chips)
  2. Does it have 64-bit support? If yes and arch is x86 then x86_64 is the architecture of the system (aka amd64).

The freehand red circle shows the critical bits of info here from the above-linked site.

enter image description here

Your system is an amd64 architecture system, so the standard Ubuntu 64-bit will be sufficient to match your architecture.

Thomas Ward
  • 78,878