<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ham radio clock - Hamradio.my</title>
	<atom:link href="https://hamradio.my/tag/ham-radio-clock/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Amateur Radio, Tech Insights and Product Reviews</description>
	<lastBuildDate>Fri, 28 Feb 2025 19:15:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://hamradio.my/wp-content/uploads/2026/02/cropped-cropped-image-removebg-preview-3-32x32.png</url>
	<title>ham radio clock - Hamradio.my</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Installing HamClock for Amateur Radio Use</title>
		<link>https://hamradio.my/2025/03/installing-hamclock-for-amateur-radio-use/</link>
					<comments>https://hamradio.my/2025/03/installing-hamclock-for-amateur-radio-use/#comments</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 28 Feb 2025 18:31:33 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[free open source software]]></category>
		<category><![CDATA[ham clock]]></category>
		<category><![CDATA[ham radio]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[AmateurRadio]]></category>
		<category><![CDATA[DXCluster]]></category>
		<category><![CDATA[dxing]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[ham radio clock]]></category>
		<category><![CDATA[hamclock]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[netbsd]]></category>
		<category><![CDATA[propagation]]></category>
		<category><![CDATA[radioastronomy]]></category>
		<category><![CDATA[radiowave]]></category>
		<category><![CDATA[RaspberryPi]]></category>
		<category><![CDATA[satellite]]></category>
		<category><![CDATA[shortwave]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=6551</guid>

					<description><![CDATA[<p>HamClock is a powerful tool designed for amateur radio operators, providing real-time propagation data, satellite tracking, and more. This guide will walk you through installing HamClock on various UNIX-like systems, including Raspberry Pi, macOS, Debian, Ubuntu, FreeBSD, and others. Whether you&#8217;re using HamClock for monitoring solar conditions, DX cluster spots, or tracking satellites, this step-by-step [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2025/03/installing-hamclock-for-amateur-radio-use/">Installing HamClock for Amateur Radio Use</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"></h3>



<p class="wp-block-paragraph">HamClock is a powerful tool designed for amateur radio operators, providing real-time propagation data, satellite tracking, and more. This guide will walk you through installing HamClock on various UNIX-like systems, including Raspberry Pi, macOS, Debian, Ubuntu, FreeBSD, and others. Whether you&#8217;re using HamClock for monitoring solar conditions, DX cluster spots, or tracking satellites, this step-by-step tutorial will help you get started.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 1: Install Required Dependencies</h2>



<p class="wp-block-paragraph">Before installing HamClock, ensure your system has the necessary dependencies installed. These dependencies vary by operating system:</p>



<h3 class="wp-block-heading"><strong>For Raspberry Pi and Debian-based Systems:</strong></h3>



<pre class="wp-block-code"><code>sudo apt-get update
sudo apt-get -y install curl make g++ libx11-dev libgpiod-dev xdg-utils
</code></pre>



<h3 class="wp-block-heading"><strong>For Ubuntu:</strong></h3>



<pre class="wp-block-code"><code>sudo apt install curl make g++ xorg-dev xdg-utils
</code></pre>



<h3 class="wp-block-heading"><strong>For macOS:</strong></h3>



<p class="wp-block-paragraph">First, install XQuartz and Xcode. Then, open &#8220;More developer tools&#8221; and install the command line tools. On macOS Sequoia, you may need to run:</p>



<pre class="wp-block-code"><code>xcode-select --install
</code></pre>



<h3 class="wp-block-heading"><strong>For FreeBSD:</strong></h3>



<pre class="wp-block-code"><code>sudo pkg install gcc xorg gmake curl
</code></pre>



<p class="wp-block-paragraph">Then, use <code>gmake</code> instead of <code>make</code>.</p>



<h3 class="wp-block-heading"><strong>For NetBSD:</strong></h3>



<p class="wp-block-paragraph">First, install <code>pkgin</code>, then run:</p>



<pre class="wp-block-code"><code>sudo pkgin install gmake curl
</code></pre>



<p class="wp-block-paragraph">Use <code>gmake</code> instead of <code>make</code>.</p>



<h3 class="wp-block-heading"><strong>For RedHat or Fedora:</strong></h3>



<pre class="wp-block-code"><code>sudo yum install gcc-c++ libX11-devel xdg-utils
</code></pre>



<h3 class="wp-block-heading"><strong>For Alpine Linux:</strong></h3>



<pre class="wp-block-code"><code>setup-desktop
apk add g++ libx11-dev curl linux-headers
</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 2: Install HamClock</h2>



<p class="wp-block-paragraph">Once the dependencies are installed, proceed with downloading and installing HamClock. There are two methods depending on your operating system.</p>



<h3 class="wp-block-heading"><strong>For Raspberry Pi (Automated Install):</strong></h3>



<pre class="wp-block-code"><code>cd
curl -O https://www.clearskyinstitute.com/ham/HamClock/install-hc-rpi
chmod u+x install-hc-rpi
./install-hc-rpi
</code></pre>



<p class="wp-block-paragraph">Follow the prompts and answer <code>y</code> or <code>n</code> as needed. This script will automate the installation for you.</p>



<h3 class="wp-block-heading"><strong>For Other UNIX-like Systems (Manual Install):</strong></h3>



<pre class="wp-block-code"><code>cd
rm -fr ESPHamClock
curl -O https://www.clearskyinstitute.com/ham/HamClock/ESPHamClock.zip
unzip ESPHamClock.zip
cd ESPHamClock
make -j 4 hamclock-800x480
sudo make install
</code></pre>



<p class="wp-block-paragraph">This will install HamClock with a resolution of 800&#215;480 pixels. If you need a different resolution, refer to Step 4.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 3: Run HamClock</h2>



<p class="wp-block-paragraph">After installation, you can start HamClock with the following command:</p>



<pre class="wp-block-code"><code>hamclock &amp;
</code></pre>



<p class="wp-block-paragraph">If everything is installed correctly, HamClock should open in a window displaying solar data, propagation info, and maps.</p>



<p class="wp-block-paragraph">If you did not install a desktop icon, you can always launch HamClock from the terminal using the command above.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 4: Customize HamClock</h2>



<p class="wp-block-paragraph">HamClock supports different screen sizes. If you want to change the resolution, use the following commands:</p>



<pre class="wp-block-code"><code>cd ~/ESPHamClock
make clean
make -j 4 hamclock-2400x1440
sudo make install
</code></pre>



<p class="wp-block-paragraph">Replace <code>2400x1440</code> with the desired resolution:</p>



<ul class="wp-block-list">
<li><code>hamclock-1600x960</code></li>



<li><code>hamclock-2400x1440</code></li>



<li><code>hamclock-3200x1920</code></li>
</ul>



<p class="wp-block-paragraph">If you want HamClock to fill the screen completely, navigate to <strong>Page 5</strong> in the Setup menu and enable the full-screen option.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 5: Auto-start HamClock on Boot</h2>



<p class="wp-block-paragraph">To ensure HamClock starts automatically on system boot, you can create an autostart entry.</p>



<h3 class="wp-block-heading"><strong>For XDG-compliant systems:</strong></h3>



<pre class="wp-block-code"><code>cd ~/ESPHamClock
mkdir -p ~/.config/autostart
cp hamclock.desktop ~/.config/autostart
</code></pre>



<h3 class="wp-block-heading"><strong>For macOS (Create a Clickable App):</strong></h3>



<p class="wp-block-paragraph">If you&#8217;re using macOS, you can create a clickable app on your Desktop:</p>



<pre class="wp-block-code"><code>cd ~/ESPHamClock
HCDIR=~/Desktop/HamClock.app
mkdir -p $HCDIR
echo '#!/bin/bash' &gt; $HCDIR/HamClock
echo '/usr/local/bin/hamclock &amp;' &gt;&gt; $HCDIR/HamClock
chmod u+x $HCDIR/HamClock
</code></pre>



<p class="wp-block-paragraph">To assign a proper icon, follow these steps:</p>



<ol class="wp-block-list">
<li>Open <code>hamclock.png</code> with Preview.</li>



<li>Click on the image.</li>



<li>Press <strong>⌘-A</strong> to select the image, then <strong>⌘-C</strong> to copy.</li>



<li>Right-click the new <code>HamClock.app</code> Desktop item and select <strong>Get Info</strong>.</li>



<li>Click the existing default icon in the top left corner.</li>



<li>Press <strong>⌘-V</strong> to paste the new icon.</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Easy HamClock Installation on Raspberry Pi (Raspbian/Bullseye/Bookworm)" width="640" height="360" src="https://www.youtube.com/embed/2FJNHN1YmKE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">By following these steps, you’ll have HamClock running seamlessly for amateur radio use, helping you track propagation, monitor DX cluster spots, and track satellites. Whether you’re using a Raspberry Pi, macOS, or a UNIX-like system, HamClock is a great addition to any ham radio station. For more info, visit <a href="https://www.clearskyinstitute.com/ham/HamClock/">https://www.clearskyinstitute.com/ham/HamClock/</a></p>



<p class="wp-block-paragraph">Enjoy using HamClock and 73! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png" alt="🎙" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e1.png" alt="📡" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The post <a href="https://hamradio.my/2025/03/installing-hamclock-for-amateur-radio-use/">Installing HamClock for Amateur Radio Use</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2025/03/installing-hamclock-for-amateur-radio-use/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
