Troubleshooting
9 minute read
This guide covers common issues encountered with the Interceptor Carrier Board and their solutions.
Power Issues
System won’t power on
Symptoms: Power LED doesn’t illuminate, no activity.
Solutions:
- Verify ATX PSU is switched on (check rear switch)
- Check that 24-pin ATX connector is fully seated
- Verify PSU is functional (test with another system or PSU tester)
- Check front panel power button wiring on J2
System powers off randomly / crashes
Symptoms: System runs for a while then shuts down or freezes.
Likely Cause: Unstable +3.3V rail from PSU.
Solutions:
- Replace PSU - This is the most common cause. Low-quality PSUs cannot maintain 3.3V under low load conditions typical of Pi-based systems
- Use a Flex ATX PSU from the Exaviz Store or a quality brand (Corsair, EVGA, Seasonic)
- Check voltage with multimeter (should be 3.3V ±5%)
The Interceptor Carrier Board’s SATA controller and Ethernet switch are powered by the 3.3V rail. Voltage drops below 3.2V will cause system instability or crashes.
System unstable under load
Symptoms: Crashes when accessing SATA drives or using PoE.
Solutions:
- Verify PSU wattage is adequate for your configuration
- Check 12V rail capacity (especially with PoE boards)
- Ensure all power connections are secure
See also: SATA drives dropping under sustained I/O for detailed symptoms and diagnosis when drives fail under load.
Boot Issues
Keyboard not working at boot menu
Symptoms: Keyboard works after OS loads but not in boot menu or during early boot.
Cause: Some keyboards (especially Apple keyboards) are not recognized during early boot stages.
Solution: Use a standard PC/Windows keyboard for boot menu navigation and initial setup. Your preferred keyboard can be used after the OS loads.
“GPT no bootable partition” error
This error has two common causes:
Cause 1: CM5 USB boot limitation
CM5 cannot boot from USB 2.0, and the Interceptor board only has USB 2.0 ports.
Solutions for CM5:
- Use SD card boot - If CM5 has blank eMMC, it will boot from SD
- Flash eMMC - Use a separate Raspberry Pi IO Board (CM4 or CM5 IO Board both work) with rpiboot to flash the OS to eMMC, then install CM5 on the Interceptor
Cause 2: Windows flashing issue
Flashing OS images from Windows can sometimes create invalid GPT partition tables that prevent booting. This affects CM4 and CM5 when booting from USB flash drives.
Solutions for Windows flashing issues:
- Flash from Linux or macOS - This consistently resolves the issue
- Flash to SD card or eMMC instead of USB flash drive
- Try a different tool - Raspberry Pi Imager or Balena Etcher
See FAQ for more details.
No video output
Symptoms: HDMI displays show no signal.
Solutions:
- Try the other HDMI port (J4 or J5)
- Banana Pi CM4: Only HDMI0 (J4) works - this is a known limitation
- Check
config.txtfor HDMI configuration issues - Try a different HDMI cable or monitor
- Connect via SSH to verify system is booting
SD card not detected
Solutions:
- Try a different SD card
- Reformat card as FAT32 (for boot partition)
- Re-flash the OS image
- Check SD card slot for debris or damage
Slow boot from USB flash drive (~45 second delay)
Symptoms: System takes 45-60 seconds to boot from a USB flash drive. You see the network link activate and DHCP requests before the OS finally starts loading.
Cause: This is a boot order timing issue, not a hardware problem. The USB flash
drive needs 1-2 seconds after power-on for the USB subsystem to enumerate it.
The default EEPROM boot order (0xf215 or similar) tries SD → USB → Network.
SD fails almost instantly (~100ms), so the bootloader reaches USB before the drive
is ready. It moves on to Network boot, which takes 30-60 seconds to timeout (DHCP
requests, link negotiation). After the timeout, the boot loop restarts and USB
succeeds on the second pass.
You are effectively paying a ~45 second Network boot penalty because the USB drive needed an extra second or two to enumerate.
Fix: Set USB as the first boot device. The bootloader’s own initialization (EEPROM config, clock setup) provides enough time for the USB subsystem to be ready by the time it checks the first boot mode:
# CM4: Requires a Raspberry Pi IO Board + rpiboot to update EEPROM
# CM5: Can be updated from the running system
sudo rpi-eeprom-config --edit
Set:
BOOT_ORDER=0xf2614
This decodes as (right to left): USB → SD → NVMe → Network → restart.
With USB first, the drive is already enumerated when the bootloader checks it, so it boots immediately without ever reaching Network.
CM4 cannot update its bootloader EEPROM from the running system. You need a
Raspberry Pi IO Board and rpiboot to change EEPROM settings. See
Bootloader Settings for details.
Network Issues
Ethernet switch not detected (RTL8367RB err=-19)
Symptoms:
dmesgshowsrtl8367rb: err=-19or similar- No DHCP IP address on WAN port
- Network interfaces missing
Likely Cause: Usually indicates a bad CM4 module or improper seating.
Solutions:
- Reseat the CM4 module
- Check CM4 connector pins for damage
- Test the CM4 on a Raspberry Pi IO Board if available
- Try a different CM4 module
The RTL8367RB Ethernet switch communicates with the CM4 via MDIO. If the CM4 has connectivity issues, the switch won’t initialize properly.
No network connectivity
Symptoms: Cannot ping or SSH to the device.
Solutions:
- Check Ethernet cable connections
- Verify link LEDs on the RJ-45 ports are illuminated
- Try a different port on J8
- Check IP configuration:
ip addr show
Only some ports working
Solutions:
- Check individual port LEDs
- Try different cables
- Check switch driver is loaded:
sudo dmesg | grep rtl
Storage Issues
SATA drives not detected
Symptoms: Drives not showing in lsblk.
Solutions:
- Check SATA and power cables are connected
- Verify drives work in another system
- Check controller status:
sudo dmesg | grep -i "sata\|jmb\|ahci" lspci | grep -i sata
Poor SATA performance
Symptoms: Slow transfer speeds.
Solutions:
- Check for SATA errors:
sudo dmesg | grep -i error - Verify AHCI mode is enabled
- Check cable quality (use quality SATA III cables)
SATA drives dropping under sustained I/O
Symptoms:
- Drives make beeping or clicking sounds under heavy I/O (RAID rebuild, large file copies)
- Multiple SATA ports re-linking simultaneously
- Kernel logs show
ATA bus errorandfailed command: READ FPDMA QUEUED - Link speeds progressively degrade from 6.0 Gbps → 3.0 Gbps → 1.5 Gbps
- System load spikes (load average exceeds CPU count)
How it presents:
A single bad SATA cable causes one port to re-link repeatedly. But when multiple ports start failing at the same time — especially during sustained I/O like a RAID rebuild — the cause is almost always an undersized PSU that cannot deliver enough current on the 12V rail.
The drives momentarily lose power, causing the SATA link to drop. The kernel detects the link failure and re-establishes it at a lower speed. This cycle repeats, degrading performance further and producing audible beeping as drives spin down and back up.
How to diagnose:
Check how many ports are re-linking:
# Count re-link events per port dmesg | grep -c "ata1: SATA link up" dmesg | grep -c "ata2: SATA link up" dmesg | grep -c "ata3: SATA link up"Check for speed degradation and bus errors:
# Look for speed limiting and failed commands dmesg | grep -E "ata[0-9]: (limiting|SATA link)" dmesg | grep "failed command"If one port is re-linking → likely a bad cable (swap the cable)
If multiple ports are re-linking simultaneously under load → PSU cannot supply enough power
Solutions:
- Stop any heavy I/O immediately (e.g., stop a RAID rebuild) to
prevent potential data loss:
sudo mdadm --stop /dev/md0 - Upgrade your PSU. See the sizing guide below.
- Once the PSU is replaced, reassemble and rebuild:
sudo mdadm --assemble /dev/md0 /dev/sda1 /dev/sdb1 /dev/sdc1
When sizing a PSU for the Interceptor, account for all 12V loads:
| Component | Typical Draw |
|---|---|
| CM4/CM5 + board logic | 10–15W |
| Per 3.5" HDD (spin-up peak) | 6–8W each |
| Per 2.5" SSD | 2–3W each |
| VOITA 48V converter (PoE) | 5–10W idle, up to 250W at full PoE load |
Example: A system with 3× 3.5" HDDs and a VOITA converter needs at least 350W to handle sustained I/O with headroom. A 270W PSU may boot and idle fine but fail under sustained load like a RAID rebuild.
Use a quality Flex ATX PSU from the Exaviz Store or a reputable brand (Corsair, EVGA, Seasonic).
- Bad cable: One port re-links repeatedly. Other ports are stable. Replacing the cable resolves it immediately.
- Undersized PSU: Multiple ports fail simultaneously under load. Drives may beep as they lose and regain power. Reducing load (stopping I/O) stops the failures.
Fan Issues
Fans running at full speed
Expected Behavior: The fan headers (M1-M4) do not support PWM speed control. Fans will always run at full speed when connected.
Workaround: Use low-noise fans or external fan controllers if noise is a concern.
Fans not spinning
Solutions:
- Verify fans are 12V DC (not PWM-only)
- Check fan connections
- Test fans on another 12V source
Serial Console Issues
Cannot connect via UART
Solutions:
- Use a 3.3V USB-to-Serial adapter (not 5V!)
- Check TX/RX are not swapped:
- Adapter TX → Board RX (J2 Pin 6)
- Adapter RX → Board TX (J2 Pin 5)
- Connect GND
- Use correct serial settings: 115200 8N1
Video Issues
No HDMI output
Symptoms: No video on either HDMI port.
Solutions:
- Reseat the compute module — Improperly seated modules are a common cause of HDMI issues. Power off, remove the CM4/CM5, and reinstall ensuring proper alignment on both connectors
- Check connector pins — Pins can become damaged invisibly during installation
- Try a different HDMI cable
- Try the other HDMI port
- Test on a Raspberry Pi IO Board — If available, test the CM4 on a standard Pi IO Board. If the green LED doesn’t light, the module may be defective
- Try a known-good module — If you have another CM4/CM5, swap to verify
An improperly seated compute module can cause HDMI to fail while other functions (network, storage) work normally. Always check module seating first when troubleshooting video issues.
A Raspberry Pi IO Board is useful for CM4 troubleshooting and eMMC flashing. Consider keeping one as a diagnostic tool.
No display on HDMI1 (Banana Pi)
Expected: This is a known limitation. Only HDMI0 (J4) works with Banana Pi CM4.
4K resolution issues
Solutions:
- Verify monitor and cable support HDMI 2.0
- Check
config.txtsettings:hdmi_enable_4kp60=1
Getting More Help
If you’ve tried these solutions and still have issues:
Gather Information:
# System info uname -a cat /etc/os-release # Hardware detection lsusb lspci lsblk # Recent errors sudo dmesg | tail -100Contact Support:
- Email: support@exaviz.com
- Include system information and error messages
Next Steps
- FAQ - More common questions and solutions
- Hardware Interface - Connector reference
- Software - OS configuration and drivers
- Getting Started - Setup guide
Last modified February 25, 2026