On 2017/12/14 16:53, Stephen Graf wrote: > I tested from an x86 ver 9 bacula client to a ver 7 server and it works. My > server is openbsd 6.1. > However when I try it from an orange pi one ver 9 client to the same server > the client quits with the following message in messages and daemon: > Dec 14 16:47:31 op1-0 bacula-fd: Bacula interrupted by signal 10: BUS error
Ah that's interesting. Could really do with a backtrace for this, does gdb work on armv7 and if so can you get anything from it? Something like gdb `which bacula-fd` set args -u root -g wheel -v -c /etc/bacula/bacula-fd.conf -f -d255 <...attempt backup...crash...> bt full Might need a build done with "DEBUG=-g" if the trace isn't useful. Not sure if it's the case here but a bus error could be due to unaligned memory access (x86 will silently handle unaligned access with AIUI just a performance hit, but some other arches don't allow it at all).