Running Linux Applications - 2024.2 English - UG1209

Zynq UltraScale+ MPSoC Embedded Design Tutorial (UG1209)

Document ID
UG1209
Release Date
2025-03-20
Version
2024.2 English

After Linux is up on the ZCU102 system, log into the Linux target with login: root and password: root. The Linux target is now ready to run applications. Run the Linux application by performing the following steps.

  1. Copy the application from the SD card mount point to /tmp:

    # cp /run/media/mmcblk0p1/ps_pl_linux_app.elf /tmp
    

    Note

    Mount the SD card manually if you fail to find SD card contents in this location.

    # mount /dev/mmcblk0p1 /media/.
    

    Copy the application to /tmp.

    # cp /media/ps_pl_linux_app.elf /tmp
    
  2. Run the application.

    # /tmp/ps_pl_linux_app.elf
    
    _images/image114.png