Hey everyone,
I recently ran into a frustrating loop while setting up my ZimaOS node with a fresh 8TB RAID 1. If you are seeing the dreaded “There was an error loading the data” message in the App Store while your storage is resyncing, here is why it’s happening and how to fix it without waiting 100+ hours.
The Problem:
When ZimaOS is performing an initial RAID resync (especially on USB-based enclosures like TerraMaster), the “I/O Wait” becomes massive. The system is so busy syncing the drives that the App Store service times out before it can reach the internet.
The 1-Minute Fix:
If a system restart doesn’t work, you need to manually poke the ZimaOS services to “force” a fresh connection. Open your Terminal and run these two commands:
Bash
sudo systemctl restart zimaos-app-management
sudo systemctl restart zimaos
Why this works:
-
zimaos-app-managementhandles the connection to the App Store. -
zimaosis the core dashboard “brain.” Restarting these after the RAID has settled into its resync rhythm allows them to grab the network priority they need to load the store data.
Still stuck? The “Breather” Trick:
If the App Store is still choking, it’s because the RAID is sprinting too fast. You can temporarily slow down the sync to give the OS some “breathing room” to install your apps:
Bash
# This limits the sync speed so the App Store can load
echo 10000 | sudo tee /proc/sys/dev/raid/speed_limit_max
(Once your apps are installed, you can restart or set that number back to 2000000 to let the RAID finish at full speed!)
Hope this helps someone else avoid a long night of troubleshooting!