SPO600 aarch64 QEMU on Ireland

From CDOT Wiki
Revision as of 10:24, 18 March 2014 by Nicholas Robert Kemp (talk | contribs) (Setting Up Qemu On Home Machine)
Jump to: navigation, search


QEMU linux-user

The CDOT host Ireland (ireland.proximity.on.ca) has been set up with a QEMU userspace emulator. This program interprets aarch64 binaries and translate operating system calls to the underlying x86_64 kernel, enabling many aarch64 binaries to be executed with good performance. However, because it does not emulate the full system, some capabilities are not available: in particular, debugging software such as gdb and strace will not work.

Each user has a private QEMU aarch64 filesystem tree located at ~/arm64. You can access files within that tree using your regular account.

arm64 Mode

To enter your arm64/aarch64 chroot, execute this alias to invoke a chroot via sudo:

[user@ireland (x86_64) ~]$ arm64
[root@ireland (aarch64) /]#

Note the three changes shown in the prompt that happen when this command is executed:

  1. The directory changes to the root directory of the arm64 environment, which is equivalent to ~/arm64 when outside of the aarch64 chroot.
  2. The arch mode changes from 'x86_64' to 'aarch64'.
  3. The user changes to root.

To exit from aarch64 mode, exit from the shell with Ctrl-D or exit

Special Mounts

In the arm64 chroot, some commands such as mount and top will not work correctly because special filesystems such as /proc and /sys are not mounted.

These special filesystems may be mounted using the script specialmount. To unmount these special filesystems, use the corresponding script specialumount while in the arm64 chroot.

Stop (medium size).png
Superuser access - Danger!
While in the chroot environment, you are a superuser. Although the chroot provides partial protection, it is still possible to cause major damage. Take care not to delete entries in the special mounts or perform other actions that would affect the host or other users.
Idea.png
Back Up Your Work
The storage on Ireland is not backed up - you are responsible for protecting your own work. Since other students will have root access (see above), you should back up your work to another system frequently!

Sample Code

There is some sample code in the directory ~/arm64/spo600/examples, which is also accessible through the symlink ~/spo600-examples.

Setting Up Qemu On Home Machine

1. While on Ireland and in ARM64 mode at at root archive your ~/arm64 directory on Ireland:

tar -cvzf destdir.tgz *

2. copy that archive and the file /etc/binfmt.d/qemu-arm64.conf to your machine

3. unpack the arm64 archive (use -p to preserve permissions and timestamps) and put the qemu-arm64.conf file into /etc.binfmt.d/qemu-arm64.conf on your local machine

4. run:

sudo systemctl restart systemd-binfmt

5. to switch to arm64/aarch64 mode, type: sudo chroot ~/arm64 # or wherever you put your arm64 directory