Hi Vadim,
You are probably correct, in the mean time I recompiled everything, so it works now, but most likely the *-dev packages were missing. Thanks for pointing that out!
Another question I have is about displaying the Osmo-BSC logs:
I am working on a museum setup and would be nice to show the BSC log output on the screen when there is activity. I wonder if there is a practical way to do that without altering the systemd part.
Regards, Csaba
show the BSC log output on the screen when there is activity
This?
sudo journalctl -u osmo-bsc -f
The fine art is to adjust the logging levels so that you see enough information, but not too much.
Just as an example from osmo-bsc.cfg:
log stderr logging filter all 1 logging color 1 logging print level 1 logging print category 1 logging print category-hex 0 logging print file basename last logging timestamp 0 logging print extended-timestamp 1 logging level set-all info logging level linp notice logging level lss7 notice logging level lsccp notice logging level lsua notice logging level lm3ua notice
There are many other ways to configure logging, see the alternatives 'log stderr', 'log file', 'log gsmtap'...
~N