After a lot of online research, this is a summary of the steps I had to take to finally emulate Raspbian (Buster version) on Ubuntu.
For more information, check the sources in the guide and at the bottom.
Last tried Jan 2023 on a Lubuntu 22.04 LTS VM on Virtualbox
$ sudo apt update
Just a quick update before we dive in: what we're actually doing here is running Raspberry Pi OS (64-bit) on a QEMU virtual ARM setup. This isn't full-blown hardware emulation of the Raspberry Pi 4, but more about creating a virtual environment for the OS. It doesn't mimic all the specific hardware features of the Pi 4, but it's pretty useful and great for general testing. I turned to this solution mainly to extract a modified sysroot from the Raspberry Pi OS, something not readily available in other resources. For those looking into detailed emulation of the actual Raspberry Pi 4's hardware in QEMU, check out this link for the latest updates: https://gitlab.com/qemu-project/qemu/-/issues/1208.
Hope it helps! :D
Shortcomings: No GUI yet, only console.
(defun my/org-id-insert-link-with-completion () | |
"Insert a link to another heading using completion. | |
Use the heading text as default description, but provide an | |
opportunity to edit same. | |
The `org-outline-path-complete-in-steps' option affects the behavior of | |
this command. It works best when set to nil. | |
To change which headings are presented as candidates, modify the command | |
by adding a `targets' argument in the call to |