Copyioxclient --profile <profile-name> application activate <package-name> --payload <activation-payload-file>
# An activation.json file is optional. However, if the IOx app needs access to a serial device or needs a network port map of 1:1, then this file should be provided.
# example activation payload file
root@ioxsde:~# cat activation.json
{
"resources":
{
"network": [{"interface-name": "eth0", "network-name": "iox-nat0", "port_map":{"mode" : "1to1" } }],
"devices": [{"type": "serial", "alias": "usb_serial", "label": "HOST_DEV", "device-id":"/dev/ttyUSB0", "usage":"Serial device of USB port of AP"}]
}
}