Hi!
With the new rpi4 is it possible to install Ubuntu x64 and build every ppa x64??
Or there are still differences from the Ubuntu server of a "normal"x64 PC and a rpi4?
The Raspberry Pi will never run x64 (or x86) code natively. This is because it uses a different processor architecture - ARM. This is the same architecture that mobile phones use, and is where the chip for the first Raspberry Pi actually came from._robertacaruso_ wrote: ↑Sat Jan 11, 2020 10:14 amHi!
With the new rpi4 is it possible to install Ubuntu x64 and build every ppa x64??
Or there are still differences from the Ubuntu server of a "normal"x64 PC and a rpi4?
Source code is not usually "for" any particular CPU type - unless it contains Assembly code. The CPU type it runs on will depend on what platform it is built for. Normally this is the same platform as it is built on, but it is possible to cross-compile for another platform, for example to build on an x86_64 system for armhf use._robertacaruso_ wrote: ↑Sat Jan 11, 2020 4:50 pmThere are source code but are for x64.. So can work?
Software comes in two forms - source code and object code, which is also known as "binaries". Software is written by human developers in source code using a particular programming language, then translated into object code by a compiler. Object code will only run on a single processor architecture. Source code does not run at all - it must always be compiled into object code before it can be run._robertacaruso_ wrote: ↑Sat Jan 11, 2020 4:50 pmThere are source code but are for x64.. So can work?