Hello good people,
I’m trying to run some AppImage for x86 on UTM virtual machine that is ARM on MAC OSX. I managed to setup rosetta using virtualisation.rosetta.enable = true;
.
Then I managed to set it up to run AppImages using:
programs.appimage = {
enable = true;
binfmt = true;
};
But when I try to runn AppImage, I’m getting error:
rosetta error: failed to open elf at /lib64/ld-linux-x86-64.so.2
Naively I tried to run symlink /lib/ld-linux...
to that location, but I get exec format error in that case. I assume that it is because rosetta also need ld library that is compiled for x86. So, anybody had similar problem? Is there way to install x86 ld library and symlink it using nix-ld?
Thank you