this post was submitted on 29 May 2024
2 points (60.0% liked)

techsupport

2380 readers
23 users here now

The Lemmy community will help you with your tech problems and questions about anything here. Do not be shy, we will try to help you.

If something works or if you find a solution to your problem let us know it will be greatly apreciated.

Rules: instance rules + stay on topic

Partnered communities:

You Should Know

Reddit

Software gore

Recommendations

founded 1 year ago
MODERATORS
 

Is it a physical structure of the chip or is it programming? Because how can linux ARM run on a device that used to run windows x86?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 2 months ago* (last edited 2 months ago)

What you mean is the processor instruction set, which does affect the physical structure of the processor. You cannot just change the programming/microcode of the processor to have it use a different instruction set.

Because how can linux ARM run on a device that used to run windows x86?

I don't think that's possible. It is possible to have a translation layer, so that individual programs that are compiled for one instruction set (e.g. x86) can be run on a different instruction set (e.g. ARM).

But I can't imagine such a translation layer working for the whole OS, as something still needs to tell the processor how to do the translation. Theoretically, the translation layer could be baked into the processor, but I have not heard of that being a thing, so far.

Is your question inspired by something specific?