I'm trying to chroot into a ARM64 tree setup on AMD64 system, the command:
fakeroot fakechroot -d /usr/aarch64-linux-gnu chroot $PWD/arm64
/usr/sbin/chroot.fakechroot: 1: /usr/bin/seq: Permission denied
/usr/sbin/chroot.fakechroot: 1: /usr/bin/seq: Permission denied
/usr/sbin/chroot.fakechroot: 138: env: Permission denied
and
fakechroot -d /usr/aarch64-linux-gnu fakeroot chroot $PWD/arm64
/usr/bin/fakeroot: 1: getopt: Permission denied
/usr/bin/fakeroot: 1: getopt: Permission denied
/usr/bin/fakeroot: 7: cat: Permission denied
both fail on Ubuntu 24.04. While directly using sudo chroot $PWD/arm64 works as expected. Is there a way to make this work? FYI fakechroot fakeroot chroot $PWD/amd64 works as expected. Note the working example is a AMD64 tree.
I'm trying to chroot into a ARM64 tree setup on AMD64 system, the command:
and
both fail on Ubuntu 24.04. While directly using
sudo chroot $PWD/arm64works as expected. Is there a way to make this work? FYIfakechroot fakeroot chroot $PWD/amd64works as expected. Note the working example is a AMD64 tree.