Platform-Specific Troubleshooting¶
Platform-specific issues and solutions for different operating systems.
๐ค AI-Generated Content
This documentation was generated with AI assistance and is still being audited. Some, or potentially a lot, of this information may be inaccurate. Learn more.
Overview¶
FlavorPack packages are designed to work across platforms, but each operating system has its own quirks and requirements. This section provides platform-specific troubleshooting guides.
Platform Guides¶
Linux Troubleshooting¶
Comprehensive troubleshooting for Linux distributions:
- Permissions and Execution: File permissions, noexec filesystems
- Library Dependencies: Missing shared libraries, glibc issues
- Distribution-Specific: Ubuntu, Debian, RHEL, CentOS, Alpine, Arch
- Container Environments: Docker, Podman, LXC
- System Integration: systemd, cron, startup scripts
Supported Distributions: - Ubuntu 20.04+, Debian 10+ - RHEL/CentOS 8+, Fedora 37+ - Alpine 3.16+, Arch Linux
macOS Troubleshooting¶
macOS-specific issues and solutions:
- Code Signing: Gatekeeper, notarization, quarantine attributes
- Architecture: Apple Silicon (M1/M2/M3) vs Intel
- Permissions: File permissions, extended attributes
- Rosetta 2: x86_64 compatibility on ARM
- System Integration: LaunchAgents, startup items
Supported Versions: - macOS 10.15 (Catalina) and newer - Both Intel and Apple Silicon
Windows Troubleshooting¶
Windows-specific issues and solutions:
- SmartScreen: Windows Defender warnings
- Execution Policy: PowerShell restrictions
- UAC: User Account Control
- Permissions: File access, ACLs
- Path Handling: Windows paths, environment variables
Status: Beta support
Common Cross-Platform Issues¶
Execution Permissions¶
All platforms require execute permission:
Missing Dependencies¶
Linux: May need shared libraries (libssl, libz, etc.) macOS: Usually self-contained, may need Rosetta 2 Windows: May need Visual C++ Redistributable
Architecture Mismatches¶
Ensure package matches your system architecture:
# Check system architecture
uname -m # Linux/macOS
echo %PROCESSOR_ARCHITECTURE% # Windows
# Build for correct platform
flavor pack --platform linux_amd64 # Linux x86_64
flavor pack --platform darwin_arm64 # macOS ARM
flavor pack --platform windows_amd64 # Windows x64
Platform Comparison¶
| Feature | Linux | macOS | Windows |
|---|---|---|---|
| Support Level | โ Full | โ Full | ๐ง Beta |
| Static Binaries | โ Yes (musl) | โ Dynamic | โ Dynamic |
| Code Signing | โช Optional | โ ๏ธ Required for distribution | โช Optional |
| Containers | โ Excellent | โ Good | ๐ง Limited |
| Architectures | x86_64, ARM64 | x86_64, ARM64 | x86_64 |
Getting Help¶
If you can't resolve a platform-specific issue:
- Check the platform guide above for detailed troubleshooting
- Search GitHub Issues for similar problems
- Ask in Discussions with platform details
- File an Issue with full diagnostic output
See Also: - Common Issues - Cross-platform troubleshooting - Error Reference - Error message explanations - FAQ - Frequently asked questions