Troubleshooting - JOCIIIII/PX4-PILS-Runner GitHub Wiki
General
"Permission Denied" Error
- This is generaly related to the Linux permission error mainly about:
- File not having "execution" permission.
- User not owning the file/directory.
- If the file is not executable, make it to be by
chmod +x
command.
- If user does not own the file or directory, make it to be by
chown
or chmod
command.
- You can check the ownership of file by
ls -al
.
AirSim Related
OpenXR-Loader Error Message
airsim-binary | Error [GENERAL | | OpenXR-Loader] : RuntimeManifestFile::FindManifestFiles - failed to determine active runtime file path for this environment
airsim-binary | Error [GENERAL | xrEnumerateInstanceExtensionProperties | OpenXR-Loader] : RuntimeInterface::LoadRuntimes - unknown error
airsim-binary | Error [GENERAL | xrEnumerateInstanceExtensionProperties | OpenXR-Loader] : RuntimeInterface::LoadRuntimes - failed to load a runtime
airsim-binary | Error [GENERAL | xrEnumerateInstanceExtensionProperties | OpenXR-Loader] : Failed to find default runtime with RuntimeInterface::LoadRuntime()
airsim-binary | Error [GENERAL | xrEnumerateInstanceExtensionProperties | OpenXR-Loader] : Failed querying extension properties
- When running an AirSim binary, error message related to the OpenXR-Loader might appear.
- This is affects nothing to the simulation, You can ignore it.