Able to confirm that I can at least work around the issue for now. In case anyone need a convenient enough copy pastable command, this is the sequenced I was able to use.
```bash # Workaround for ubuntu issue [Allow bitbake to create user namespace](https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/2056555) # Credit to Changqing Li (sandy-lcq), Karsten S. Opdal (karsten-s-opdal) and Ferry Toth (ftoth) ## Add Bitbake's AppArmor Profile sudo tee /etc/apparmor.d/bitbake > /dev/null <<'EOF' abi <abi/4.0>, include <tunables/global> profile bitbake /**/bitbake/bin/bitbake flags=(unconfined) { userns, } EOF # Reload AppArmor Profile sudo apparmor_parser -r /etc/apparmor.d/bitbake ``` I like the idea of including the command suggestion in the bitbake error message at least until a proper fix is available. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2056555 Title: Allow bitbake to create user namespace To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/2056555/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
