Wednesday, November 30, 2022

GRHub Network will be down for maintenance purposes between 9h00 and 13h00 tomorrow 1 December 2022.

UPDATE 2 December 2022  07h30 SAST: The GRHub Network is back online/on the air.


Please note that the ZS1I GRHUB Network will be down for maintenance purposes between 9h00 and 13h00 tomorrow..

The current battery back-up needs TLC or replacement.  It also must be moved from within the shack to another area where it can vent freely and not under the desk in the shack.  Once all the power connections has been disconnected a battery test will be performed to value the strength of the battery.  I will also perform maintenance and back-up of the system while it is down for maintenance.

We should all know by now what happens if you do not perform maintenance on power providing utilities. 

I apologize for any inconvenience in this regard.

ZS1I

 


 

Monday, November 28, 2022

How to install the Debian OS (Bullseye) on a Raspberry Pi 3 Model B single board computer


I received a request to compile an easy manual to install the Debian OS (Bullseye) on a Raspberry Pi 3 Model B.  You asked for it and here is the manual/guide.

Download the PDF file that contains the manual/guide  HERE

This guide will show you how to set up Bullseye on a Raspberry Pi computer. It is today very easy to get your Pi up and running. This guide assumes that you have limited knowledge of the Linux based Raspberry Pi OS. We will install the Debian operating system to the Raspberry Pi. Yes I know there are hundreds of videos and examples of how to install and setup a PI. I am going to explain what worked for me that resulted in a successful installation and working setup.

Please note this setup worked for me and I have a fully working PI up and running on a Raspberry Pi 3 (b) with Debian version: 11. (Bullseye)


To write the OS to an SD Card for the Raspberry Pi I used a very nice and versatile piece of software called Raspberry Pi Imager. Using the imager is a simple way to image your microSD card with Raspbian, the official Raspberry Pi operating system, and other operating systems.

Note: You will need to be connected to the Internet the first time for the Raspberry Pi Imager to download the OS that you choose.

Download and install Raspberry Pi Imager to a computer with an SD card reader. Put the SD card you'll use with your Raspberry Pi into the reader and run Raspberry Pi Imager. Watch this 45-second video to learn how to install an operating system using Raspberry Pi Imager. Take note that I changed the settings of Pi Imager to include the following:

Image customization options - to always use

  • Enable SSH (Use Password authentication)

  • Let username and password - Username: pi Password: xxxxxx (you choose)

  • Set locale settings – Time Zone: You choose Keyboard Layout: You choose

Note: I did not configure wireless LAN as I use the Ethernet connection.

Persistent Settings

  • Play sound when finished

  • Eject media when finished

  • Enable telemetry

All selected.

Click Save

You are now ready to write the image to the SDCard. Ensure that you selected the correct storage (SDCard) as choosing the wrong drive will erase everything on that drive. Click on write. The image will now be written to the selected SDCard. After writing, it will verified the firmware and then you will get a message that the write is completed and you can remove the SDCard.



 Before continuing install the following two programs to your windows computer:

I take a short cut route and do not install a keyboard, mouse or HDMI screen to the Raspberry Pi. However I would advise beginners to connect a keyboard, mouse and HDMI screen to the PI. You have a choice to use the keyboard, mouse or HDMI screen or running the Pi Headless and excess the unit via VNC or PuTTY

Lets continue. Insert the Ethernet cable to the Ethernet port.

You can now insert the SDCard into the slot of the Raspberry Pi. Boot up the Pi and wait till its finished. If you attached the keyboard, mouse and HDMI screen you do not have to use VNC. The Pi should bootup with the OS on the screen and you can use the mouse and keyboard to do further setup of the OS. Your IP address will also be displayed on the main screen. Write it down as you will need it to configure a static IP address as explained later in the script. Skip the two following paragraphs and continue – “At the command prompt type............”

For those who is brave enough lets setup the OS headless. Ensure that your Windows computer is on the same Router as the Raspberry Pi. Open the Advanced Port Scanner program and set the correct IP scanning range just below the Scan button. Leave other settings as is. Click the Scan Button. The scanning will start. Wait till the program stops scanning. Now look for the columns Manufacturer and MAC Address. Under the Manufacturer column you will see Raspberry Pi Foundation and the MAC Address next to it. To the left in the IP column will be your raspberry pi’s IP address. Write it down as you will need the address for PuTTY to access the Pi headless.

Now open PuTTY and enter the IP address in the slot named Host Name or IP Address. Leave the port setting 22 and click Open. You will be greated with a new screen asking for your Login as: and Password. Enter the Username and Password that you set in settings of the Raspberry Pi Image. Once you logged in we can now change a few settings for the Raspberry Pi.

At the command prompt type: sudo raspi-config

The configuration menu will open. I only make changes to two headings. You can always later again access the config menu and make changes. The two headings are Interfaces and Localisation. I selected the following settings:

Interfaces

Select VNC

Remote GPIO or Serial depending on how you going to interface your radio, if you want to interface the PI to a radio.

Localisation

Change -

  • Set Locale

  • Set Timezone 

  • Set Keyboard

  • Set WLAN Country

The above settings is straight forward and I am not going to go into detail here.

Click OK and the menu will close. Now open a terminal and type: sudo reboot This will reboot the raspberry pi.

It is now time to access the Pi via VNC client from your Windows computer.



I use VNC Connect by Real VNC. Once installed open the program and a VNC viewer screen will appear. Right click and select New Connection. A new window will open. Just add your Raspberry Pi IP address in the VNC Server column. Leave the other setting as is. Click OK. A new window will open asking for your Raspberry Pi Username and Password. This is the same username and password that you used in PuTTY. Click OK. Another screen either Red or yellow warning screen will open just click OK and you will see your Raspberry Pi main screen on you Window Computer.

But the resolution and screen size of the Pi might not be correct. Lets fix this quickly.

Set VNC resolution for the Raspberry Pi

Step 1:

sudo nano /boot/config.txt

as this file needs root permission to edit we use sudo. Nano is used for editing.

Pi headless using standard VNC server and I change this in the boot config file.


# uncomment to force a console size. By default it will be display's size minus

# overscan.

framebuffer_width=1900

framebuffer_height=1024


Step 2:

With the framebuffer set comment the following line out:


#dtoverlay=vc4-kms-v3d


Commenting out then save, exit and reboot got me full resolution on VNC. Use “ctrl+x” “y” “enter” to exit nano and save your changes. Now reboot the Pi.

Once rebooted it is not a bad time to set a static ip-address for the Pi.


Set Static IP-Address (Optional - Need not be set if your router use dhcp allocation.)

Open a new Terminal window. We will setup a static ip address by editing the dhcpcd.conf file. See the example in the bottom of the file. You can use "nano" editor. To save and exit the editor, press ctrl-x and answer Y to save:

sudo nano /etc/dhcpcd.conf


# Example static IP configuration:

interface eth0

static ip_address=192.168.0.10/24

#static ip6_address=fd51:42f8:caae:d92e::ff/64

static routers=192.168.0.1

static domain_name_servers=192.168.0.1 8.8.8.8

Enter the IP address allocated to the PI by your router under {static ip address=}

Enter your routers IP address under {static routers =}

Enter you routers IP address under {static domain_name_servers=}

Now is a good time to reboot your Raspberry.

sudo reboot

enter

Your Raspberry PI is now ready to use once the reboot has been completed. 

However it is always a good thing to keep your OS up to date.  On the top right side of you Pi screen an icon will show up from time to time to inform you that there are updates for your Pi.  Click on the icon and install the updates.  However you can also use a terminal

sudo apt-get update

sudo apt-get upgrade ;( Optional - You going to need a big cup of coffee for this one to finish.)

enter

Updates / Upgrades will start.  Reboot once finished.

sudo reboot

enter

Congratulations you should have a working Raspberry Pi with Bullseye OS installed. Enjoy!

I trust that this “manual” will be of use to newcomers to the wonderful world of Linux and Raspberry Pi.


Compiled by Johan ZS1I

Mossel Bay

28 November 2022



Sunday, November 27, 2022

Heritage on the airwaves - Mossel Bay Advertiser Article


He said: "In short, the radio amateurs visit a historical site. They take their radio equipment, set it up and start broadcasting information about the specific site all over the world."

MOSSEL BAY  NEWS -  Heritage on the air (H.O.T.A) is an amateur radio group that strives to motivate radio amateurs to learn more about history, and to keep history alive by activating a multitude of historical sites by using SSB, AM, FM, CW radio frequencies, even with heliographs.

Corné Conradie, a local radio amateur and member of the Eden Radio Club, with the call sign, ZS1COR, spoke to Mossel Bay Advertiser about H.O.T.A.

Read more by clicking HERE 

 

-  Mossel Bay Advertiser - weekly bilingual community newspaper in Mossel Bay. Distributed every Friday in the Garden Route area.  

Friday, November 25, 2022

New VOIP and RF Node now active on the GRHub Network in the Mossel Bay Area


I have been working these past few weeks on the construction of a new VOIP network and 2M RF node to add to the GRHub  Network in Mossel Bay.  As you should know by now I am not a "cheque book" radio amateur that just buys what is needed, plug everything in and there you go.  No I like to tinker, homebrew and to experiment. This new node is as far as I know the first VOIP node in South Africa that use some equipment that dates back to the 1980's and 1990's.  Yep you read correctly.  Although VOIP was  invented in 1995 there are still older equipment that can provide far better performance than new equipment.  However this topic is not about the construction of the new node.  I will in future go into great deal on how I constructed this node and what equipment I used.

The new node was tested over the past few days to ensure that all the current functions work as expected.  This morning Curtis ZS6CMO obliged and connected to the new node.  We did a quick connect and audio  test which was successful.  I would like to thank Curtis for assisting me with the tests.  I later decided to connect the new node to the UK Hubnet this morning to see if there is any "fish out there".  Low and behold it was not long before Andy VK6KQ (Australia) called and Marko ZS1NEU returned his call via RF on 2 Meters FM.  The two of them had a great QSO and was later joined by John VK6LWB  (Australia)  and Andrew 2W0INY (UK).  Marko was mobile and I was stationary mobile with only a 2m handheld on hand.  In my opinion the audio quality and reception was just as good as the ZS1I-L  AllStar Node that is currently the main node in operation.

Thus far I am quite impressed with the functionality of the new node.  The node is still in a test phase and I will provide full details in a future post in this regard.  The node is still open and on the workbench and I still have to complete several final construction features as well as further setup of the software.

I would like to invite radio amateurs to use the node when it is reflected in Echolink.  It will be weekdays on test between 09h00 - 16h00 SAST.

The node particulars are:

  • ZS1I-R GRHub Network, MSB, ZA
  • Node Number:  929614
  • Connect via Echolink or RF 145.550 Mhz  88.5 hz CTCSS
  • This node is currently not  connected to the AllStar Node Network
  • The node timeout after 5 minutes if there is no activity and you need to reconnect.
  • Currently only one station can connect at a time.  This will be changed in future.
  • Further modules with great functionality will be added in future.  One such future is the ability to leave and audio message via the QSO Recorder on the mailing list.

What will the new node be used for?  Well that is an open question that I cannot answer at this stage but I can assure you that this node will be the "heartbeat" of the GRHub Network. I am also working on another experimental VOIP node that will if successful be easy and cheap to build.  I envisage that this node concept will allow fellow radio amateurs to obtain their own node to be used in the shack, mobile or portable.  Lookout for this node.

Finally I would like to thank the following radio amateurs for their support and willingness to assist me in testing this project.  Although I only mentioned a few here you are most welcome to join in on the fun:

Curtis ZS6CMO,  Thys ZS1TBP,  Marko ZS1NEU, Andy VK6KQ, John VK6LWB and Andrew 2W0INY.

 

Thursday, November 24, 2022

The amateur radio bands are dead. You need an amplifier to work voice HF!!


Statement: The amateur radio bands are closed.  You need an amplifier to work voice HF!!

Is the above statement really true?  This is far from the truth and this article will prove just the opposite - that the bands are open and that you do not need any amplifier to work voice HF.

On the 22 November 2022 in the early evening I was informed by Corne ZS1COR that the 40 meter band is wide open and that he worked the following stations on voice with only 5 watt RF output power on a frequency of 7155 Mhz:

  • Elton ZS1LT - Paarl
  • Granville ZS1GVW - Paarl
  • Werner ZS6SAR - Meyerton
  • Russel V51RJ - Ross Pinah, Namibia
  • Allewyn ZS3A - Kimberley

Corne informed me that the contacts was made during a period of loadshedding with a far lower noise floor.

Enough writing from me.  The following videos provide more details of the contacts:


With the current sun cycle on the up conditions are improving every day.  In the past up cycles I used a "shoe string" antenna to work the world on many bands.  The moral of the story is that you need to switch your radio on and call CQ.  You never know who is going to answer your call.  QRO is OK but QRP is GREAT!!

Monday, November 21, 2022

Amateur Radio H.O.T.A Activation: 1. 500 year old Post Office Tree 2. Dias Museum, Mossel Bay - 19 November 2022 14h00


 Ancient trees are precious. There is little else on Earth that plays host to such a rich community of life within a single living organism.

—Sir David Attenborough

 


What does a 500 year old Milkwood tree and Amateur Radio (Ham Radio) have in common?  Read on and you will find out how Amateur Radio keep history alive by activating historical sites in South Africa  using amateur radio.  The activation is called H.O.T.A which stands for Heritage on the Air. 

Now what is H.O.T.A?

H.O.T.A (Heritage on the air) is an amateur radio group that strives to motivate radio amateurs to learn more about history, and to keep history alive by activating a multitude of historical sites by using SSB, AM, FM, CW and even with Heliographs.  Radio amateurs have great fun going out in the field and visiting places and areas where once history was made. Even if you do not like history there is places that were visited that might be of interest to you.  You can even combine your other hobbies with H.O.T.A.  Now that you have a faint idea of H.O.T.A it is time to learn more about H.O.T.A and the fun radio amateurs have and  can have in activating historical sites.

If you want to learn more about H.O.T.A you can visit the Heritage on the Air website by clicking HERE.

Corne Conradie ZS1COR and Thys Louw ZS1TBP activated two historical sites in Mossel Bay with moral support from members of the Eden Radio Club  ZS1ERZ this past Saturday, 19 November 2022.  The following historical sites in Mossel Bay were activated on the grounds of the Bartolomeu Diaz Museum Complex in the CBD of Mossel Bay between 14h00 - 16h00 using Amateur Radio.  The two sites were: 

  • The Post Office Tree ( dated 1500)  HOTA Registration Number:  TO 0002
  • Bartolomeu Dias Museum Complex/Site ( dated 1488)  HOTA Registration Number: MS 0006

More information on these two historical sites are available at:  (Click on the links for more information)

Both sites were successfully activated in accordance with the rules stipulated by the Management Board of H.O.T.A (Bo Karoo Amateur Radio Club)

Video and Images of the Event :  (Click on images for larger view.)















 


Above Images:  Corne ZS1COR and Diaz Museum Mossel Bay
















Above Images (except QSL cards) :  Johan ZS1I (Click on images for larger view)

Article compiled by Johan ZS1I

Place: Mossel Bay

Date: 21 November 2022

PLEASE NOTE:

The author of this article is not affiliated to any amateur radio club in South Africa.  The information published is to promote amateur radio and activities by any means available.  Any amateur radio club in South Africa is welcome to send me information for publication about their activities and I will gladly publish it on the GRHub Network Blog.

Recognition:

  1. H.O.T.A
  2. All those radio amateurs that made contacts with the activation group on the day
  3. Eden Radio Club ZS1ERZ
  4. Corne ZS1COR
  5. Thys ZS1TBP
  6. Mare ZS1MEH
  7. Dias Museum Complex
  8. All linked parties above
  9. Amateur Radio
  10. Staff and CEO of the Dias Museum Complex

Sunday, November 20, 2022

George Herald: Amateur radio group 'activates' cathedral

 

GEORGE NEWS (15 November 2022) - St Mark's Cathedral in George was activated on Saturday, 29 October, as a Heritage on the Air (Hota) site.

Activating a site entails legally licensed radio operators making radio contact with each other. Saturday's activation was done by Corné Conradie, who was joined by members of the Eden Radio Club ZS1ERZ.

Conradie (ZS1COR) reported that he made roughly 20 contacts during the activation period from 11:00 to 14:00. 

Read and view images of the news article HERE

Source:  George Herald

 

 

Monday, November 14, 2022

VIDEO: ISS above South Africa at 08:08 AM SAST today (14 November 2022)


 Image: NASA

Amateur Radio HOTA Activation: Glentana Shipwreck Activated - 11 November 2022 18h00


 

This past Friday 11 November 2022  the the old shipwreck in Glentana was activated from 18h00 as a Heritage On The Air site by Corne ZS1COR.  

More info on the wreck is available at these links: 

 This was surely a well worth site to activate but let Corne ZS1COR tell the story about the activation:

 

What is HOTA?

H.O.T.A (Heritage on the air) is an amateur radio group that strives to motivate radio amateurs to learn more about history, and to keep history alive by activating a multitude of historical sites by using SSB, AM, FM, CW and even with Heliographs.  Radio amateurs have great fun going out in the field and visiting places and areas where once history was made. Even if you do not like history there is places that were visited that might be of interest to you.  You can even combine your other hobbies with H.O.T.A.  Now that you have a faint idea of H.O.T.A it is time to learn more about H.O.T.A and the fun radio amateurs have and  can have in activating historical sites.

If you want to learn more about H.O.T.A you can visit the Heritage on the Air website by clicking HERE.

                                                                 Foto:  Marnus Liebenberg

Images:  Click on images for larger view.










New Amateur Radio Repeater Technology in the Southern Cape

New amateur radio repeater technology soon available in the Southern Cape on the "Aasvoëlkop" Repeater Site.  There is great excit...