Installing MauroContSysEdit.cli on Linux ARM
Instructions for installing the MauroContSysEdit.cli command-line tool on Linux distributions with ARM64 (AArch64) architecture.
Before installing MauroContSysEdit.cli on Linux ARM, ensure you have:
- ARM64-compatible Linux distribution (Ubuntu 20.04+, Debian 11+, Fedora 35+, or Raspberry Pi OS)
- Root or sudo privileges
- At least 100 MB of available disk space
- .NET 9 Runtime for ARM64 (or use self-contained version)
- Development tools (git, tar, etc.)
ARM64 Linux systems include Raspberry Pi 4/5, AWS Graviton instances, and various ARM-based servers and development boards.
-
Verify your system architecture
uname -mShould output
aarch64orarm64 -
Download or build for ARM64
- Download pre-built ARM64 binary (if available)
- Build from source (recommended for ARM systems)
-
For pre-built ARM64 binary:
-
Download:
wget https://github.com/oughnic/Mauro-Edit/releases/latest/download/MauroImportExport.Cli-linux-arm64.tar.gz -
Extract:
tar -xzf MauroImportExport.Cli-linux-arm64.tar.gz -
Install:
sudo mv MauroImportExport.Cli /usr/local/bin/ -
Set permissions:
sudo chmod +x /usr/local/bin/MauroImportExport.Cli
-
Download:
-
For building from source on ARM64:
-
Verify installation:
MauroImportExport.Cli versionVersion 0.6.0 and plugin list should appear. -
Create convenient alias (optional)
Add to ~/.bashrc:
alias mauro-cli='MauroImportExport.Cli'Reload:
source ~/.bashrc -
Test with a simple command
MauroImportExport.Cli list-formatsA table of available import/export formats should display.
MauroContSysEdit.cli is now installed with native ARM64 support on your Linux system, providing optimal performance for ARM processors.
For Raspberry Pi systems with limited resources, consider using the framework-dependent version instead of self-contained to reduce disk space usage.
ARM64 builds provide significantly better performance than running x64 builds under emulation (where available).