Hi, I’m the Toradex AI Assistant.
I might make mistakes or occasionally get you wrong. Our support team will step in if needed.
Based on the available documentation, I don’t have specific information about the xz utility’s availability in Torizon OS 7.5.0. The documentation focuses on building custom images, device tree overlays, and system configuration rather than specific package availability.
Since you’re running Torizon OS 7.5.0 on Verdin iMX8M Plus and need the xz compression utility, you have a few options:
Solutions
1. Use a Container with xz
The recommended approach for Torizon OS is to use containers for additional tools. You can run xz from within a container that has it installed:
docker run --rm -v $(pwd):/data alpine:latest sh -c "apk add xz && xz --version"
2. Custom Image Build
If you need xz permanently available in the base system, you can build a custom Torizon OS image that includes it. You would need to build from source using Yocto Project/OpenEmbedded (1) and add the xz package to your custom image recipe.
3. Alternative Compression Tools
Check if other compression tools are available in your current Torizon OS installation:
gzip / gunzip
bzip2 / bunzip2
Getting More Information
To get detailed information about your current system and available packages, you can use the tdx-info command. For more details, see: Getting Device Information with Tdx-Info | Toradex Developer Center
The containerized approach is typically the most practical solution for Torizon OS, as it maintains the minimal base system while providing access to additional tools when needed.
Best regards, Toradex AI Assistant.
Did you like my answer?

If I answered your question, please tick the “Solution” checkbox.
For follow-up questions to me, please use @ToradexAI in your post.