Questions tagged [arm64]

ARM64 is a 64-bit instruction expansion to the popular ARM processor architecture. It is widely used in mobile devices and lower-end devices. This tag should only be used for questions specific to installing and using Ubuntu and official derivatives on the ARM64 platform.

ARM64 (also known as aarch64 or ARMv8) is an expansion of the previously-existing Advanced RISC Machine v7 (ARMv7) specification for modern devices requiring the use of 64-bit operating systems and programs.

ARM64 is frequently employed on mobile devices such as phones and tablets. It is also seeing an introduction into low-end computing devices such as budget tablets. IoT-like devices where low power demands are desirable (for example, the Raspberry Pi 3) also are prominent users of the ARM64 platform.

ARM64 officially launched in October 2011. Support of the architecture was added to the Linux kernel in 2012[citation-needed].

154 questions
42
votes
4 answers

Install Ubuntu Desktop 22.04 ARM64 on macOS Apple Silicon (M1/Pro/Max) in Parallels

There's no direct download of Ubuntu Desktop 22.04 for ARM64 yet, how do you install it?
ylluminate
  • 1,629
  • 3
  • 19
  • 27
29
votes
1 answer

Install Chrome on ubuntu/debian with arm64

I'm trying to install chrome using the commands below: wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - sh -c 'echo "deb [arch=$(dpkg --print-architecture)] https://dl-ssl.google.com/linux/chrome/deb/ stable main"…
auser
  • 401
14
votes
2 answers

How to spin a x86_64 ubuntu on Apple M1 with Multipass

I have an Apple M1 processor (ARM64). Is there any way to spin a x86_64 machine? By default Multipass 1.8.0 is launching ARM64 Ubuntu instances.
13
votes
1 answer

How to run armhf executables on an arm64 system?

I have Ubuntu 16.04.2 LTS installed on an arm64 server: # uname -a Linux test 4.9.23-std-1 #1 SMP Mon Apr 24 13:18:14 UTC 2017 aarch64 aarch64 aarch64 GNU/Linux I ran the following command to enable armhf package installation: # dpkg…
Nathan Osman
  • 32,495
12
votes
3 answers

Is there any translation layer for x86 software on Ubuntu ARM?

I have recently installed Ubuntu ARM on my M1 MacBook Air on a virtual machine (using Parallels), and unlike Windows ARM and macOS ARM, Ubuntu ARM does not seem to include a translation layer for x86 apps, which makes the system almost unusable as a…
12
votes
10 answers

Raspberry Pi 4 Ubuntu 19.10 cannot enable cgroup memory at boostrap

On a Raspberry Pi 4, on a vanilla downloaded 19.10 image of Ubuntu 19 arm64, I failed trying to enable cgroup memory, needed for Kubernetes. I created (because I don't understand well the real one, I think the…
Luca Mazzanti
  • 223
  • 1
  • 2
  • 6
9
votes
1 answer

Why can't I install 'arm64' packages on an 'amd64' system when I can install 'armhf' packages?

Pretty self-explanatory: could someone tell me why I get the error $ sudo apt-get install gcc-6-base:arm64 dpkg: error processing archive /var/cache/apt/archives/gcc-6-base_6.0.1-0ubuntu1_arm64.deb (--unpack): package architecture (arm64) does not…
user541686
  • 4,347
8
votes
2 answers

Can I run an ARM32 bit App on an ARM64bit platform which is running Ubuntu 16.04

My 64Bit ARM platform is shipped with Ubuntu 16 and I need to run my 32 bit App which is compiled for ARM32: [root@artik publish]# file myApp myApp: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter…
EmEn
  • 181
7
votes
0 answers

How to install Ubuntu on Microsoft ARM Dev kit?

Microsoft recently unveiled its ARM Dev kit. This computer has 32GB RAM and a Qualcomm Snapdragon 8cx Gen 3 processor, and it is way more powerful than a Raspberry Pi. How to install Ubuntu on it?
6
votes
2 answers

Can we install and run Ubuntu WSL for ARM on x86_64 windows machine?

Can we install and run Ubuntu WSL for arm64 arch on x86_64 windows machine ?
6
votes
1 answer

How do I install the gcc-13 aarch64 cross compiler on Ubuntu 22.04?

The Linux kernel now requires gcc v13 in order to compile, but Ubuntu 22.04 is stuck on gcc v11. I found instructions to install the latest native gcc-13 via a PPA (https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/ppa), but I don't see any…
6
votes
2 answers

Missing iscsi_tcp kernel module in Ubuntu 21.10 for Raspberry Pi ARM64

I have just done a fresh install of Ubuntu 21.10 for Raspberry Pi ARM64 in order to try out the new release. After performing an apt upgrade and updating the iscsi initiator name I tried to run sudo iscsiadm --mode discovery --type sendtargets…
4
votes
1 answer

arm64 multi-arch docker build fails on apt update

I'm trying to create a multi-arch container based on ubuntu 20.04. Docker build fails on apt update after the new architecture is added. This is my docker file so far: # base image FROM ubuntu:20.04 # create user RUN useradd -rm -d /home/embed -s…
M47
  • 201
4
votes
0 answers

How does x86_64 Ubuntu 20.04 run aarch64 ELF executables?

I build a Docker container from the following Dockerfile: FROM ubuntu:20.04 RUN apt-get update && apt-get -y install clang gcc-aarch64-linux-gnu I'm on an x86_64 macOS v10.15.7 host system which means the Docker container will see an x86_64 CPU…
4
votes
1 answer

Apt can't find package libasound2-dev 20.04 arm64

I'm trying to install libasound2-dev on a freshly installed Ubuntu 20.04 on my Raspberry Pi 4 but apt reports that it can't find the package. Running apt search libasound2 yields: ubuntu@ubuntu:~$ sudo apt search libasound2 Sorting... Done Full Text…
1
2 3
10 11