There might be others too, but here’s a couple of Amateur Radio logging apps that install easily on Raspbian:
- https://www.cqrlog.com/ : install with: sudo apt-get install cqrlog
- http://www.nongnu.org/xlog/ : install with: sudo apt-get install xlog


Articles, notes and random thoughts on Software Development and Technology
There might be others too, but here’s a couple of Amateur Radio logging apps that install easily on Raspbian:

I used
sudo touch /forcefsck
to set my Pi to run a fsck at boot, but it failed with this message:
"An automatic check (fsck) of the root filesystem failed. A manual fsck must be performed, then the system restarted. The fsck should be performed in maintenance mode with the root filesystem mounted in read-only mode"
I ran sudo fsck /dev/mmcblk0p2 – there was a couple of errors that required a ‘y’ to fix, and then it completed. Rebooted, and back to normal. Similar discussion on this message here.
Each time I setup a new Pi or SD Card, I have to go back and find what /boot/config.txt settings I used last time to get HDMI working with my LG 2341 monitor, so for reference (ymmv), here’s the settings I uncommented or added:
hdmi_force_hotplug=1
hdmi_group=1
hdmi_mode=16
hdmi_drive=2
There’s always a dozen ways to do anything on Linux, and I was looking for a quick and easy way to run a script at startup on Raspbian on a Raspberry Pi.
I found this post:
http://raspberrypi.stackexchange.com/questions/8734/execute-script-on-start-up
which has a number of good suggestions, but the quickest and easiest approach is probably to add a @reboot entry to crontab, as suggested in this post here.