¿ªÔÆÌåÓý

Date
A program like Morse Runner that runs on the Raspberry Pi
In case anyone is interested, while learning the algorithms used by Morse Runner in order to modify it for my interests, I wrote a python version that is mostly a clone of Morse Runner. The source is
By Kevin W9CF · #14544 ·
Re: HamPi Wins a new Award from SourceForge
Congratulations!? Well done... Ray W9EUM --
By Ray Cadmus · #14543 ·
HamPi Wins a new Award from SourceForge
[image: SourceForge] <https://sourceforge.net> *Find*, *Create*, & *Publish* Open Source Software for *free*. HamPi has just been recognized with a Community Leader award by SourceForge. This honor
By Dave Slotter, W3DJS · #14542 ·
Re: CQRlog mySQL error
Hello David Thanks for the hints and sorry, I indeed clicked on the wrong mailing list address when I quickly described my problem. Later, I remarked my error and sent the same mail to the right
By Udo Isaenko · #14541 ·
Re: CQRlog mySQL error
Hello Udo, Considering HamPC is a customized version of Ubuntu 22.04 for X86 and not the usual focus of Raspberry Pi OS (and other distros) on Raspberry Pi hardware, it might be best to post this
By David Ranch · #14540 ·
CQRlog mySQL error
I just tried to open for the first time CQRlog on my freshly installed HamPC stick. Unless the HamPi (where it worked without any problems last night), I got a severe mySQL
By Udo Isaenko · #14539 ·
Re: I may have found the place
Hello Tryg, Welcome to the Rpi HAM group! There are a lot of diverse HAM interests here with a common focus of them running on Linux on a Raspberry Pi. If you have questions, I'm sure someone here
By David Ranch · #14538 ·
I may have found the place
Hello, I am Trygve Sjothun, EI7CLB, (my details are on QRZ). I have had my licence since 1986 but was out of the hobby for 20+ years although trying to SWL whenever I wasn't glued to a guitar. I am
By EI7CLB · #14537 ·
Re: HamPC 3.0.1 (August 2022) Released
Hi, Thank you very much for your efforts. I wonder how can I update a previous version works on a RPI?
By ragulec@... · #14536 ·
HamPC 3.0.1 (August 2022) Released
Fellow Hams, I am pleased to announce that HamPC 3.0.1b1 <http://hampc.sourceforge.net/>, the comprehensive ham radio software for the PC brought to you by the creator of the award-winning HamPi, is
By Dave Slotter, W3DJS · #14535 ·
Re: TNC-Pi9k6 will not register on linux using aplay -l and arecord -l commands
Try Putty. Les Keegan?N4LPK?
By Les Keegan · #14534 ·
Re: TNC-Pi9k6 will not register on linux using aplay -l and arecord -l commands
Sorry, this should say "but that is NOT a feature of the Pi96K software" 73, John ps The sound card emulator code for the TNC-Pi9k6 board can be downloaded
By John G8BPQ · #14533 ·
Re: TNC-Pi9k6 will not register on linux using aplay -l and arecord -l commands
Hi, That's because the TNC-Pi9k6 is not a soundcard, but a KISS TNC.? It is accessed through the serial port /dev/serial0.? You won't be able to use it with JS8Call or similar apps, but you can use
By Mark Griffith <mdgriffith2003@...> · #14532 ·
Re: TNC-Pi9k6 will not register on linux using aplay -l and arecord -l commands
The TNC-Pi9k6 is a KISS packet TNC, not a sound card. It will register with Linux as a USB serial device (likely ttyUSB0 or ttyACM00). It won't work with programs that need a sound card. There is
By John G8BPQ · #14531 ·
TNC-Pi9k6 will not register on linux using aplay -l and arecord -l commands
I am attempting to set up this TNC board with programs like direwolf and JS8 Call. However, when I attempt to configure it I am unable to find the TNC on Linux to set it as the device for the programs
By Aaron@... · #14530 ·
Re: Internet Uptime Monitor for Pi?
Something about the posted error doesn't look correct.? You should have been in the ~/internet-pi directory when you got to step 3.? The requirements.yml file should be in that directory. It's
By Michael Nadler · #14528 ·
Re: Internet Uptime Monitor for Pi?
Here are the steps to get it going: * Make sure you have Ansible installed: * (If pip3 is not installed) sudo apt-get install -y python3-pip * pip3 install ansible * Download the internet-pi
By CBJessee-N4SRN · #14527 ·
Re: Internet Uptime Monitor for Pi?
I am using the following setup for monitoring performance of internet connections. https://www.jeffgeerling.com/blog/2021/monitor-your-internet-raspberry-pi -Keith wrote:
By Keith Lakeman · #14526 ·
Re: Internet Uptime Monitor for Pi?
would not subing "ping" for traceroute work in that while statement - traceroute does generate a lot of traffic which is irrelivant to just see if the net is up... the c flag sets the number of tries
By Charles MacDonald VA3CPY · #14525 ·
Re: Internet Uptime Monitor for Pi?
If you have the "traceroute" package installed, just use the native tools in a terminal window: while true; do traceroute google.com; echo; sleep 10; done
By Tony · #14524 ·