AutoOrtho on Arch/CachyOS Linux – blue tiles fixed (source install) #414
clumsynick
started this conversation in
Ideas
Replies: 1 comment
-
|
Thanks for this! I made a PR #415 to add these instructions to the FAQ. Running from the sources works fine on Ubuntu 26.04 without rebuilding the aoimage library. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I have already posted it on forums.x-plane.org but was encouraged to post it here, too:
had a really frustrating issue with AutoOrtho Continued (now 2.3.2) on my Linux machine and wanted to share the fix since I couldn't find anything about it online.
Setup: CachyOS (Arch-based), X-Plane 12, Ryzen 7 7800X3D / RTX 4080 16GB / 64GB RAM
The problem:
No matter what I tried, I kept getting blue/missing tiles during flight. The log was full of this every few seconds:
The weird part: has_dds=True means the tile is already built and sitting in cache — yet AutoOrtho can't serve it. Lowering texture quality in X-Plane did nothing.
What's actually going on:
The pre-built Linux binary doesn't properly bundle AoImage, the native library used to read tiles from disk cache. So every single cached tile read fails silently with:
WARNING - FallbackResolver: Could not import AoImage for disk cache fallbackThe tile builder deadlocks waiting for something that will never come. On a fast machine this gets worse because X-Plane fires more concurrent tile requests.
The fix — run from source instead of the binary:
Quick sanity check:
Start script:
When it's working you'll see this in the log on startup:
Did a full flight after this — not a single blue tile, zero timeouts in the log.
This is probably specific to Arch-based distros since the binary is built on Ubuntu. If you're on Ubuntu and everything works fine, lucky you 😄
Hope this helps someone!
Beta Was this translation helpful? Give feedback.
All reactions