<?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>opensource - Hamradio.my</title>
	<atom:link href="https://hamradio.my/category/opensource/feed/" rel="self" type="application/rss+xml" />
	<link>https://hamradio.my/category/opensource/</link>
	<description>Amateur Radio, Tech Insights and Product Reviews</description>
	<lastBuildDate>Mon, 10 Mar 2025 06:37:33 +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>opensource - Hamradio.my</title>
	<link>https://hamradio.my/category/opensource/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Redis: The Powerhouse Behind Modern Databases</title>
		<link>https://hamradio.my/2024/10/redis-the-powerhouse-behind-modern-databases/</link>
					<comments>https://hamradio.my/2024/10/redis-the-powerhouse-behind-modern-databases/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 13 Oct 2024 11:33:41 +0000</pubDate>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[#Analytics]]></category>
		<category><![CDATA[#Caching]]></category>
		<category><![CDATA[#CloudComputing]]></category>
		<category><![CDATA[#Database]]></category>
		<category><![CDATA[#DataManagement]]></category>
		<category><![CDATA[#InMemoryDatabase]]></category>
		<category><![CDATA[#MessageQueuing]]></category>
		<category><![CDATA[#NoSQL]]></category>
		<category><![CDATA[#RealTimeData]]></category>
		<category><![CDATA[#Redis]]></category>
		<category><![CDATA[#Scalability]]></category>
		<category><![CDATA[#SessionManagement]]></category>
		<category><![CDATA[#Tech]]></category>
		<category><![CDATA[#WebDevelopment]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=5660</guid>

					<description><![CDATA[<p>In today’s rapidly evolving tech world, the need for fast and efficient data management is more critical than ever. One name that frequently stands out in the NoSQL database world is Redis. Since its introduction in 2009, Redis has become a go-to choice for real-time applications that require exceptional speed and flexibility in handling data. [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2024/10/redis-the-powerhouse-behind-modern-databases/">Redis: The Powerhouse Behind Modern Databases</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[
<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph">In today’s rapidly evolving tech world, the need for fast and efficient data management is more critical than ever. One name that frequently stands out in the NoSQL database world is <strong>Redis</strong>. Since its introduction in 2009, Redis has become a go-to choice for real-time applications that require exceptional speed and flexibility in handling data.</p>



<p class="wp-block-paragraph">In this article, we&#8217;ll explore the history of Redis, how it&#8217;s used, and the benefits it offers to various modern applications.</p>



<h3 class="wp-block-heading" id="h-the-history-of-redis-origins-and-evolution">The History of Redis: Origins and Evolution</h3>



<p class="wp-block-paragraph">Redis, which stands for <strong>Remote Dictionary Server</strong>, was developed by <strong>Salvatore Sanfilippo</strong> in 2009. Initially launched as an open-source project to address scalability issues faced by large-scale systems, Redis quickly gained popularity among developers for its ability to process data at lightning speeds.</p>



<p class="wp-block-paragraph">Redis operates as an in-memory database, meaning it stores all data in RAM rather than on disk. This design enables Redis to deliver significantly faster performance compared to traditional databases, making it ideal for applications that demand real-time speed.</p>



<h3 class="wp-block-heading" id="h-how-is-redis-used">How is Redis Used?</h3>



<p class="wp-block-paragraph">One of the primary reasons Redis is so popular is its flexibility, allowing it to be used in various scenarios. Here are some real-world examples of how Redis is utilized:</p>



<ol class="wp-block-list">
<li><strong>Caching</strong><br>Redis is well-known for its use in caching due to its speed. By storing data in memory, Redis drastically reduces the time it takes to retrieve data. This is especially useful in web applications where users need instant access to information such as previously loaded pages, images, or API data.</li>



<li><strong>Session Management</strong><br>Many large platforms use Redis to store user session information. When users log into a system, Redis can store their session data in memory, ensuring quick access. This is crucial for maintaining a smooth user experience without delays.</li>



<li><strong>Real-Time Analytics</strong><br>In a data-driven world, companies need instant analytics to make informed decisions. Redis enables companies to process and analyze data in real time, such as tracking user behavior on websites, monitoring IoT devices, or analyzing financial transactions as they occur.</li>



<li><strong>Message Queuing</strong><br>Redis is also widely used for message queuing via its <strong>Pub/Sub</strong> (Publisher/Subscriber) feature. This is particularly helpful in systems where real-time communication between services or applications is required, such as notification systems or instant messaging services.</li>
</ol>



<h3 class="wp-block-heading" id="h-the-benefits-of-redis-what-makes-it-great">The Benefits of Redis: What Makes It Great?</h3>



<p class="wp-block-paragraph"><strong>Incredible Speed</strong><br>Redis stands out because of its speed. As an in-memory database, Redis delivers sub-millisecond response times, making it one of the fastest technologies available for data management. This is why it is often the preferred choice for real-time applications.</p>



<p class="wp-block-paragraph"><strong>Versatile Data Structures</strong><br>Another feature that sets Redis apart is its support for various data structures like strings, lists, sets, and hashes. This versatility allows developers to use Redis in a wide range of scenarios, from storing user information to managing complex data in e-commerce systems.</p>



<p class="wp-block-paragraph"><strong>Persistence Options</strong><br>Even though Redis stores data in memory, it also offers persistence options, allowing users to periodically save data to disk. This provides an added layer of security in case of system failures, ensuring that data is backed up and recoverable.</p>



<p class="wp-block-paragraph"><strong>Easy Scalability</strong><br>Redis is easily scalable, whether vertically (by adding more RAM) or horizontally (by adding more Redis servers). This is essential for growing applications where the need to process more data increases over time.</p>



<h3 class="wp-block-heading" id="h-conclusion">Conclusion</h3>



<p class="wp-block-paragraph">Redis has proven itself to be one of the most powerful tools in modern data management. Its incredible speed, support for multiple data types, and scalability make it the top choice for real-time applications. Whether you’re a developer building web apps or a company looking to process real-time analytics, Redis is a technology worth exploring.</p>



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



<p class="wp-block-paragraph">There you have it—a brief guide to Redis and the benefits it brings. This technology not only accelerates application performance but also provides a flexible and reliable solution for managing data at scale.</p>
<p>The post <a href="https://hamradio.my/2024/10/redis-the-powerhouse-behind-modern-databases/">Redis: The Powerhouse Behind Modern Databases</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/2024/10/redis-the-powerhouse-behind-modern-databases/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>FreeBSD vs. Ubuntu: A Comparison</title>
		<link>https://hamradio.my/2024/10/freebsd-vs-ubuntu-a-comparison/</link>
					<comments>https://hamradio.my/2024/10/freebsd-vs-ubuntu-a-comparison/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 13 Oct 2024 10:22:25 +0000</pubDate>
				<category><![CDATA[free operating system]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source operating system]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[#ComputerScience]]></category>
		<category><![CDATA[#DevOps]]></category>
		<category><![CDATA[#ITCommunity]]></category>
		<category><![CDATA[#Linux]]></category>
		<category><![CDATA[#NetworkSecurity]]></category>
		<category><![CDATA[#OpenSource]]></category>
		<category><![CDATA[#OperatingSystems]]></category>
		<category><![CDATA[#Programming]]></category>
		<category><![CDATA[#ServerManagement]]></category>
		<category><![CDATA[#SoftwareDevelopment]]></category>
		<category><![CDATA[#SysAdmin]]></category>
		<category><![CDATA[#TechComparison]]></category>
		<category><![CDATA[#Ubuntu]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=5657</guid>

					<description><![CDATA[<p>When it comes to choosing an operating system for your projects, two names often come up: FreeBSD and Ubuntu. Both have unique strengths and characteristics that make them suitable for different tasks. In this post, we’ll dive deep into the differences and similarities between these two powerful systems, helping you determine which one is the [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2024/10/freebsd-vs-ubuntu-a-comparison/">FreeBSD vs. Ubuntu: A Comparison</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[
<h1 class="wp-block-heading" id="h-"></h1>



<p class="wp-block-paragraph">When it comes to choosing an operating system for your projects, two names often come up: FreeBSD and Ubuntu. Both have unique strengths and characteristics that make them suitable for different tasks. In this post, we’ll dive deep into the differences and similarities between these two powerful systems, helping you determine which one is the best fit for your needs.</p>



<h2 class="wp-block-heading" id="h-overview-of-freebsd-and-ubuntu">Overview of FreeBSD and Ubuntu</h2>



<h3 class="wp-block-heading" id="h-freebsd">FreeBSD</h3>



<p class="wp-block-paragraph">FreeBSD is an operating system that is derived from the Berkeley Software Distribution (BSD). Known for its performance and advanced networking features, FreeBSD provides a robust environment ideal for servers, embedded systems, and networking applications. The entire operating system, from the kernel to the userland tools, is developed from a single source, which helps ensure consistency and stability.</p>



<h3 class="wp-block-heading" id="h-ubuntu">Ubuntu</h3>



<p class="wp-block-paragraph">Ubuntu is a popular Linux distribution based on Debian. It is widely used for both desktop and server environments due to its user-friendliness and extensive software repositories. Ubuntu emphasizes ease of use and regular updates, making it a favorite among beginners and experienced users alike.</p>



<h2 class="wp-block-heading" id="h-key-comparisons">Key Comparisons</h2>



<h3 class="wp-block-heading" id="h-1-system-base">1. <strong>System Base</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: The entire OS is developed from a single source, providing a consistent and cohesive experience. This unified approach allows for seamless integration between the kernel and userland tools.</li>



<li><strong>Ubuntu</strong>: As a Linux-based system, Ubuntu relies on the Debian base. While it offers a rich ecosystem of software, the diversity of packages can sometimes lead to compatibility issues.</li>
</ul>



<h3 class="wp-block-heading" id="h-2-performance-amp-efficiency">2. <strong>Performance &amp; Efficiency</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: Renowned for its lightweight and minimal design, FreeBSD excels in server environments where performance is critical. It manages system resources efficiently, making it ideal for high-traffic applications.</li>



<li><strong>Ubuntu</strong>: While Ubuntu performs well in most situations, its default installation comes with a variety of services and applications that can consume more system resources than necessary.</li>
</ul>



<h3 class="wp-block-heading" id="h-3-software-availability">3. <strong>Software Availability</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: With its Ports Collection and package management system, FreeBSD offers access to over 40,000 software options. However, it may lack some of the more niche applications available on Linux.</li>



<li><strong>Ubuntu</strong>: As one of the most popular Linux distributions, Ubuntu boasts extensive software repositories, providing compatibility with nearly all Linux applications. This makes it a go-to choice for developers and users looking for variety.</li>
</ul>



<h3 class="wp-block-heading" id="h-4-security">4. <strong>Security</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: Security is a core focus of FreeBSD. It features built-in security mechanisms such as jails (which provide a form of lightweight virtualization) and a strong emphasis on minimizing vulnerabilities.</li>



<li><strong>Ubuntu</strong>: While Ubuntu is secure and receives regular updates, its wider range of installed software can lead to a larger attack surface. However, it also offers tools like AppArmor for enhanced security.</li>
</ul>



<h3 class="wp-block-heading" id="h-5-community-amp-support">5. <strong>Community &amp; Support</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: The FreeBSD community may be smaller, but it is dedicated and knowledgeable. Comprehensive documentation is available, ensuring users have access to the resources they need.</li>



<li><strong>Ubuntu</strong>: Ubuntu has a large and active community, along with professional support available through Canonical. The extensive community means users can find help quickly, whether through forums or official channels.</li>
</ul>



<h3 class="wp-block-heading" id="h-6-use-cases">6. <strong>Use Cases</strong></h3>



<ul class="wp-block-list">
<li><strong>FreeBSD</strong>: Ideal for servers, network appliances, and scenarios where stability and performance are paramount. Its strong networking capabilities make it a popular choice for firewalls and routers.</li>



<li><strong>Ubuntu</strong>: Excellent for desktop use, development environments, and general-purpose servers. Its ease of use makes it particularly appealing for users who are new to Linux.</li>
</ul>



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



<p class="wp-block-paragraph">Choosing between FreeBSD and Ubuntu ultimately comes down to your specific needs and goals. If you&#8217;re looking for an operating system that excels in performance, security, and stability, especially in server or networking environments, FreeBSD is an excellent choice. On the other hand, if you prefer a user-friendly interface with a wide array of applications for both desktop and server use, Ubuntu may be the way to go.</p>



<p class="wp-block-paragraph">Both systems have their strengths, and understanding them can help you make an informed decision. Whichever you choose, you’ll be working with powerful tools that are widely respected in the tech community. Happy computing!</p>
<p>The post <a href="https://hamradio.my/2024/10/freebsd-vs-ubuntu-a-comparison/">FreeBSD vs. Ubuntu: A Comparison</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/2024/10/freebsd-vs-ubuntu-a-comparison/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A Comparison of Text Editors – vi, vim, nano, edit, and pico</title>
		<link>https://hamradio.my/2024/10/a-comparison-of-text-editors-vi-vim-nano-edit-and-pico/</link>
					<comments>https://hamradio.my/2024/10/a-comparison-of-text-editors-vi-vim-nano-edit-and-pico/#comments</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 09 Oct 2024 01:12:08 +0000</pubDate>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Command Line Tools]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[Here are the relevant tags in a comma-separated format: Linux]]></category>
		<category><![CDATA[Linux for Beginners]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tools]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[pico]]></category>
		<category><![CDATA[Programming Tools]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Tech Tools]]></category>
		<category><![CDATA[Text Editors]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[Vim Tips]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=5639</guid>

					<description><![CDATA[<p>In the world of Linux and Unix-based systems, text editors play a vital role in editing system configurations, writing scripts, and handling various programming tasks. Whether you are a system administrator, developer, or simply working on a server, choosing the right text editor can impact your productivity and workflow. Today, we will take a look [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2024/10/a-comparison-of-text-editors-vi-vim-nano-edit-and-pico/">A Comparison of Text Editors – vi, vim, nano, edit, and pico</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" id="h-"></h3>



<p class="wp-block-paragraph">In the world of Linux and Unix-based systems, text editors play a vital role in editing system configurations, writing scripts, and handling various programming tasks. Whether you are a system administrator, developer, or simply working on a server, choosing the right text editor can impact your productivity and workflow. Today, we will take a look at some of the most popular text editors: <code>vi</code>, <code>vim</code>, <code>nano</code>, <code>edit</code>, and <code>pico</code>. Each of these editors has its own strengths, weaknesses, and use cases.</p>



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



<h4 class="wp-block-heading" id="h-1-vi-the-classic-workhorse"><strong>1. vi: The Classic Workhorse</strong></h4>



<p class="wp-block-paragraph"><code>vi</code> is one of the oldest and most basic text editors available on Unix systems. Released in 1976, it has remained a cornerstone for many Linux users. One of the key reasons for its popularity is that <code>vi</code> comes pre-installed in almost every Unix-based operating system, making it an editor that you can always rely on to be available.</p>



<ul class="wp-block-list">
<li><strong>Ease of Use:</strong> Intermediate</li>



<li><strong>Key Features:</strong> Minimalist, with basic functionality like modal editing (command and insert modes).</li>



<li><strong>Pros:</strong></li>



<li>Lightweight and consumes very few resources.</li>



<li>Always available by default on Unix systems.</li>



<li><strong>Cons:</strong></li>



<li>Steep learning curve, as <code>vi</code> relies heavily on keyboard shortcuts, and its modal nature can be confusing for beginners.</li>
</ul>



<p class="wp-block-paragraph"><code>vi</code> is perfect for users who prefer something lightweight and don’t need advanced features. It’s especially handy in situations where only a command-line interface is available, and graphical editors are not an option.</p>



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



<h4 class="wp-block-heading" id="h-2-vim-vi-improved"><strong>2. vim: Vi Improved</strong></h4>



<p class="wp-block-paragraph"><code>vim</code>, released in 1991, stands for &#8220;Vi IMproved.&#8221; As its name suggests, <code>vim</code> is an enhanced version of <code>vi</code> that offers a wealth of additional features. It retains the same modal nature as <code>vi</code> but includes many conveniences for modern programmers and power users, such as syntax highlighting, multi-level undo, and plugin support.</p>



<ul class="wp-block-list">
<li><strong>Ease of Use:</strong> Intermediate to Advanced</li>



<li><strong>Key Features:</strong> Extensive customization, syntax highlighting, and support for plugins and scripting.</li>



<li><strong>Pros:</strong></li>



<li>Highly configurable and ideal for coding and scripting.</li>



<li>Large community support with a variety of plugins for specific programming languages.</li>



<li><strong>Cons:</strong></li>



<li>The learning curve is steep for new users due to its complexity.</li>
</ul>



<p class="wp-block-paragraph"><code>vim</code> is a go-to editor for developers and system administrators who need the power and flexibility to work efficiently. Once you master its commands and keybindings, it becomes a highly efficient tool.</p>



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



<h4 class="wp-block-heading" id="h-3-nano-simplicity-at-its-best"><strong>3. nano: Simplicity at Its Best</strong></h4>



<p class="wp-block-paragraph">For users looking for an easy-to-learn and intuitive text editor, <code>nano</code> is a great choice. It was released in 1999 as a free replacement for <code>pico</code> and has become widely popular due to its simplicity. Unlike <code>vi</code> or <code>vim</code>, <code>nano</code> does not have modes, and all the available commands are clearly listed at the bottom of the screen, making it very approachable for beginners.</p>



<ul class="wp-block-list">
<li><strong>Ease of Use:</strong> Beginner-friendly</li>



<li><strong>Key Features:</strong> No modes, simple interface, and basic commands visible on-screen.</li>



<li><strong>Pros:</strong></li>



<li>Easy to use and available on most Linux distributions.</li>



<li>Perfect for beginners or users who just want to make quick edits.</li>



<li><strong>Cons:</strong></li>



<li>Lacks advanced features like syntax highlighting, plugins, or scripting capabilities.</li>
</ul>



<p class="wp-block-paragraph">If you’re new to the Linux environment and need a no-frills editor to get things done, <code>nano</code> is likely your best bet.</p>



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



<h4 class="wp-block-heading" id="h-4-edit-a-dos-throwback"><strong>4. edit: A DOS Throwback</strong></h4>



<p class="wp-block-paragraph"><code>edit</code> was originally released in 1981 for the MS-DOS environment and became the default editor for many DOS and early Windows users. While it was simple and effective for its time, <code>edit</code> is largely outdated and rarely seen in modern Unix or Linux systems.</p>



<ul class="wp-block-list">
<li><strong>Ease of Use:</strong> Beginner-friendly (for DOS/Windows users)</li>



<li><strong>Key Features:</strong> Classic DOS-style interface, simple for basic text editing.</li>



<li><strong>Pros:</strong></li>



<li>Lightweight and familiar to users who have worked in DOS environments.</li>



<li><strong>Cons:</strong></li>



<li>Very outdated, with limited functionality compared to modern text editors.</li>



<li>Irrelevant in most modern Unix/Linux systems.</li>
</ul>



<p class="wp-block-paragraph"><code>edit</code> might evoke nostalgia for users who spent time on early DOS-based systems, but it’s not a practical choice in today’s Linux environment.</p>



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



<h4 class="wp-block-heading" id="h-5-pico-the-original-simplicity"><strong>5. pico: The Original Simplicity</strong></h4>



<p class="wp-block-paragraph"><code>pico</code>, released in 1989, was originally bundled with the Pine email client. Like <code>nano</code>, it is designed for simplicity, with a focus on ease of use. In fact, <code>nano</code> was created as a free clone of <code>pico</code>. While <code>pico</code> was once popular, it has largely been replaced by <code>nano</code> in most Linux systems.</p>



<ul class="wp-block-list">
<li><strong>Ease of Use:</strong> Beginner-friendly</li>



<li><strong>Key Features:</strong> Simple navigation, basic functionality, no modes.</li>



<li><strong>Pros:</strong></li>



<li>Straightforward and easy to use.</li>



<li>Best for quick text editing without the need for advanced features.</li>



<li><strong>Cons:</strong></li>



<li>Lacks many features, including plugins, syntax highlighting, and scripting.</li>
</ul>



<p class="wp-block-paragraph">While <code>pico</code> has fallen out of favor compared to <code>nano</code>, it still serves its purpose as a simple, lightweight editor for users who value ease of use over advanced features.</p>



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



<h3 class="wp-block-heading" id="h-choosing-the-right-text-editor">Choosing the Right Text Editor</h3>



<p class="wp-block-paragraph">So which one should you use? The answer depends on your needs and experience level:</p>



<ul class="wp-block-list">
<li><strong>For Beginners:</strong> If you&#8217;re new to Linux or Unix, start with <code>nano</code> or <code>pico</code>. They are simple, intuitive, and get the job done without much hassle.</li>



<li><strong>For Intermediate Users:</strong> <code>vim</code> is a powerful tool with a large feature set. If you&#8217;re willing to invest time in learning it, <code>vim</code> will reward you with faster editing and more customization.</li>



<li><strong>For Minimalists:</strong> Stick with <code>vi</code> if you want a light, quick-to-open editor that’s always available.</li>



<li><strong>For DOS Fans:</strong> If you’re feeling nostalgic, you can still give <code>edit</code> a try, but it&#8217;s mostly a relic of the past.</li>
</ul>



<p class="wp-block-paragraph">Each text editor has its place in the Linux/Unix world, and the right one for you depends on how comfortable you are with the system and what features you need.</p>



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



<h3 class="wp-block-heading" id="h-final-thoughts">Final Thoughts</h3>



<p class="wp-block-paragraph">While text editors like <code>vi</code>, <code>vim</code>, and <code>nano</code> have different strengths, it’s important to remember that there is no &#8220;best&#8221; text editor. The best one is the one that fits your workflow and comfort level. Whether you&#8217;re just getting started or are a seasoned sysadmin, knowing the right tool for the job will make your life easier.</p>



<p class="wp-block-paragraph">Which text editor do you use? Share your thoughts in the comments!</p>
<p>The post <a href="https://hamradio.my/2024/10/a-comparison-of-text-editors-vi-vim-nano-edit-and-pico/">A Comparison of Text Editors – vi, vim, nano, edit, and pico</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/2024/10/a-comparison-of-text-editors-vi-vim-nano-edit-and-pico/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Celebrating FreeBSD Day: A Journey Through 31 Years of Open Source Excellence</title>
		<link>https://hamradio.my/2024/06/celebrating-freebsd-day-a-journey-through-31-years-of-open-source-excellence/</link>
					<comments>https://hamradio.my/2024/06/celebrating-freebsd-day-a-journey-through-31-years-of-open-source-excellence/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 13 Jun 2024 04:24:47 +0000</pubDate>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[unix like]]></category>
		<category><![CDATA[freebsd day]]></category>
		<category><![CDATA[freebsd week]]></category>
		<category><![CDATA[linux]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=3630</guid>

					<description><![CDATA[<p>Mark your calendars and get ready for an extraordinary celebration as we embark on a week-long tribute to one of the most resilient and respected operating systems in the world—FreeBSD! From June 19th, we will kick off FreeBSD Week, culminating in the grand celebration of FreeBSD Day. This year, we&#8217;re not just commemorating another year [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2024/06/celebrating-freebsd-day-a-journey-through-31-years-of-open-source-excellence/">Celebrating FreeBSD Day: A Journey Through 31 Years of Open Source Excellence</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[
<h1 class="wp-block-heading" id="h-"></h1>



<p class="wp-block-paragraph">Mark your calendars and get ready for an extraordinary celebration as we embark on a week-long tribute to one of the most resilient and respected operating systems in the world—FreeBSD! From June 19th, we will kick off FreeBSD Week, culminating in the grand celebration of FreeBSD Day. This year, we&#8217;re not just commemorating another year of innovation and community; we&#8217;re celebrating 31 years of FreeBSD&#8217;s unwavering commitment to excellence, security, and open-source principles.</p>



<h2 class="wp-block-heading" id="h-the-origin-story-a-glimpse-into-freebsd-s-beginnings">The Origin Story: A Glimpse into FreeBSD&#8217;s Beginnings</h2>



<p class="wp-block-paragraph">FreeBSD&#8217;s roots trace back to the University of California, Berkeley, where the Berkeley Software Distribution (BSD) project was developed in the late 1970s. Initially a series of patches and enhancements to the original UNIX operating system, BSD evolved into a complete and robust operating system in its own right. The project&#8217;s pioneering work laid the foundation for many of the advanced features we associate with UNIX systems today.</p>



<p class="wp-block-paragraph">The journey of FreeBSD itself began in 1993 when a group of dedicated developers decided to create a free and open-source version of BSD. This initiative came at a time when the UNIX landscape was fragmented, with many proprietary versions of UNIX competing for market share. The FreeBSD Project aimed to provide a unified, reliable, and accessible UNIX-like operating system that anyone could use, modify, and distribute.</p>



<p class="wp-block-paragraph">From its inception, FreeBSD was designed with a focus on performance, security, and flexibility. The project&#8217;s commitment to these principles quickly earned it a reputation as a powerful and dependable operating system suitable for a wide range of applications, from servers and desktops to embedded systems.</p>



<h2 class="wp-block-heading" id="h-evolution-and-milestones-freebsd-s-development-over-the-years">Evolution and Milestones: FreeBSD&#8217;s Development Over the Years</h2>



<p class="wp-block-paragraph">Over the past three decades, FreeBSD has undergone significant development, introducing numerous features and improvements that have solidified its position as a leader in the open-source community. Let&#8217;s take a closer look at some of the key milestones in FreeBSD&#8217;s history:</p>



<h3 class="wp-block-heading" id="h-the-early-years-establishing-the-foundation">The Early Years: Establishing the Foundation</h3>



<ul class="wp-block-list">
<li><strong>1993</strong>: The first official release, FreeBSD 1.0, was introduced. This initial version laid the groundwork for the project&#8217;s future development, offering a stable and feature-rich UNIX-like operating system.</li>



<li><strong>1994-1996</strong>: Subsequent releases, including FreeBSD 2.0 and 2.1, brought significant performance enhancements and new features, such as improved networking capabilities and the introduction of the Ports Collection, a package management system that simplified software installation and management.</li>
</ul>



<h3 class="wp-block-heading" id="h-growth-and-maturity-building-on-success">Growth and Maturity: Building on Success</h3>



<ul class="wp-block-list">
<li><strong>1997-1999</strong>: FreeBSD 3.0 marked a major milestone with the introduction of the GEOM framework for modular disk I/O request transformation, further enhancing the system&#8217;s flexibility and performance. This period also saw improvements in SMP (Symmetric Multiprocessing) support, making FreeBSD a viable option for multi-processor systems.</li>



<li><strong>2000-2004</strong>: FreeBSD 4.x series gained widespread acclaim for its stability and performance, becoming a popular choice for web hosting, ISPs, and other enterprise applications. The introduction of the Advanced Package Tool (APT) and enhanced security features, such as the FreeBSD Secure Levels, further cemented its reputation.</li>
</ul>



<h3 class="wp-block-heading" id="h-modern-era-innovations-and-expansions">Modern Era: Innovations and Expansions</h3>



<ul class="wp-block-list">
<li><strong>2005-2008</strong>: The release of FreeBSD 6.x brought significant advancements in network stack performance, storage systems, and virtualization support with the inclusion of Jails, a lightweight virtualization mechanism that allowed administrators to partition the system into multiple independent mini-systems.</li>



<li><strong>2009-2013</strong>: FreeBSD 8.x and 9.x series introduced features like the ZFS file system, DTrace (Dynamic Tracing Framework), and the highly scalable and flexible GEOM storage framework. These releases also saw improvements in performance and hardware support, making FreeBSD a preferred choice for high-performance computing environments.</li>
</ul>



<h3 class="wp-block-heading" id="h-recent-developments-keeping-pace-with-technology">Recent Developments: Keeping Pace with Technology</h3>



<ul class="wp-block-list">
<li><strong>2014-2019</strong>: The FreeBSD 10.x and 11.x series continued to build on the project&#8217;s legacy of innovation, introducing support for modern hardware architectures, enhanced security features, and improvements in network performance and scalability.</li>



<li><strong>2020-Present</strong>: The latest releases, including FreeBSD 12.x and 13.x, have focused on maintaining the system&#8217;s reliability and performance while integrating cutting-edge technologies such as support for the ARM architecture, enhanced virtualization capabilities, and improved system administration tools.</li>
</ul>



<h2 class="wp-block-heading" id="h-the-freebsd-community-a-collaborative-effort">The FreeBSD Community: A Collaborative Effort</h2>



<p class="wp-block-paragraph">One of the key factors behind FreeBSD&#8217;s success is its vibrant and dedicated community. The FreeBSD Project is a collaborative effort involving thousands of contributors from around the world, including developers, system administrators, and users who share a passion for open-source software and a commitment to excellence.</p>



<h3 class="wp-block-heading" id="h-the-freebsd-foundation">The FreeBSD Foundation</h3>



<p class="wp-block-paragraph">The FreeBSD Foundation, a non-profit organization established in 2000, plays a crucial role in supporting the project. The foundation provides funding for development, organizes events, and promotes the use of FreeBSD through outreach and advocacy. By fostering a strong and supportive community, the FreeBSD Foundation ensures that the project remains vibrant and sustainable.</p>



<h3 class="wp-block-heading" id="h-contributions-and-collaborations">Contributions and Collaborations</h3>



<p class="wp-block-paragraph">The open-source nature of FreeBSD encourages collaboration and contributions from a diverse group of individuals and organizations. Developers from various backgrounds contribute code, documentation, and other resources, while users provide valuable feedback and support. This collaborative approach has led to the creation of a highly reliable and feature-rich operating system that meets the needs of a wide range of users.</p>



<h3 class="wp-block-heading" id="h-events-and-conferences">Events and Conferences</h3>



<p class="wp-block-paragraph">The FreeBSD community regularly organizes events and conferences to bring together developers, users, and enthusiasts. These events provide opportunities for networking, knowledge sharing, and collaboration. Some of the notable events include the FreeBSD Developer Summit, BSDCan, and EuroBSDCon. These gatherings not only strengthen the community but also foster innovation and the exchange of ideas.</p>



<h2 class="wp-block-heading" id="h-top-freebsd-usages-versatility-in-action">Top FreeBSD Usages: Versatility in Action</h2>



<p class="wp-block-paragraph">FreeBSD&#8217;s versatility and robust features make it suitable for a wide range of applications. Here are some of the top use cases where FreeBSD shines:</p>



<h3 class="wp-block-heading" id="h-web-hosting-and-internet-services">Web Hosting and Internet Services</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s stability, performance, and advanced networking capabilities have made it a popular choice for web hosting and internet services. Many major web hosting providers and ISPs use FreeBSD to power their infrastructure, benefiting from its efficient resource management and security features.</p>



<h3 class="wp-block-heading" id="h-network-appliances-and-firewalls">Network Appliances and Firewalls</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s powerful networking stack and modular architecture make it an ideal platform for network appliances and firewalls. Solutions like pfSense, a widely-used open-source firewall and router distribution, are built on FreeBSD, leveraging its security features and reliability to deliver robust networking solutions.</p>



<h3 class="wp-block-heading" id="h-storage-solutions">Storage Solutions</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s support for advanced file systems like ZFS and its GEOM framework make it an excellent choice for storage solutions. FreeNAS, an open-source network-attached storage (NAS) solution, is based on FreeBSD and provides enterprise-grade storage features such as snapshots, replication, and data integrity.</p>



<h3 class="wp-block-heading" id="h-virtualization-and-cloud-computing">Virtualization and Cloud Computing</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s Jails feature and support for modern virtualization technologies make it well-suited for cloud computing and virtualization environments. FreeBSD Jails provide lightweight and secure virtualization, allowing administrators to run multiple isolated instances of the operating system on a single physical host. Additionally, FreeBSD is supported by popular cloud providers, making it a viable option for cloud-based deployments.</p>



<h3 class="wp-block-heading" id="h-high-performance-computing">High-Performance Computing</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s performance optimizations, scalability, and support for modern hardware architectures make it a preferred choice for high-performance computing (HPC) environments. Its efficient resource management and advanced networking capabilities enable it to handle demanding workloads and large-scale computations.</p>



<h3 class="wp-block-heading" id="h-embedded-systems-and-iot">Embedded Systems and IoT</h3>



<p class="wp-block-paragraph">FreeBSD&#8217;s flexibility and modular design make it an excellent platform for embedded systems and Internet of Things (IoT) devices. Its small footprint, combined with its stability and security features, makes it a suitable choice for a wide range of embedded applications, from industrial control systems to consumer electronics.</p>



<figure class="wp-block-image size-full"><img  title="" fetchpriority="high" decoding="async" width="947" height="943" src="https://hamradio.my/wp-content/uploads/2024/06/FreeBSD-1.jpg"  alt="FreeBSD-1 Celebrating FreeBSD Day: A Journey Through 31 Years of Open Source Excellence"  class="wp-image-3635" srcset="https://hamradio.my/wp-content/uploads/2024/06/FreeBSD-1.jpg 947w, https://hamradio.my/wp-content/uploads/2024/06/FreeBSD-1-300x300.jpg 300w, https://hamradio.my/wp-content/uploads/2024/06/FreeBSD-1-150x150.jpg 150w, https://hamradio.my/wp-content/uploads/2024/06/FreeBSD-1-768x765.jpg 768w" sizes="(max-width: 947px) 100vw, 947px" /></figure>



<h2 class="wp-block-heading" id="h-freebsd-day-the-highlight-of-the-week">FreeBSD Day: The Highlight of the Week</h2>



<p class="wp-block-paragraph">June 19th, FreeBSD Day, will be the highlight of the week, packed with special events and activities that celebrate the project&#8217;s rich history and vibrant community.</p>



<h3 class="wp-block-heading" id="h-live-stream-on-youtube">Live Stream on YouTube</h3>



<p class="wp-block-paragraph">Join us for a live streaming event where Kim McMahon, a prominent figure in the tech community, will interview key members of the FreeBSD community. This live stream will provide a unique opportunity to hear firsthand accounts from the people who have been instrumental in shaping FreeBSD. Topics will include the project&#8217;s history, current developments, and future directions.</p>



<h3 class="wp-block-heading" id="h-interactive-q-amp-a-sessions">Interactive Q&amp;A Sessions</h3>



<p class="wp-block-paragraph">Participate in interactive Q&amp;A sessions where you can ask questions and engage with developers, maintainers, and users of FreeBSD. This is your chance to connect directly with the community and get answers to your burning questions. These sessions will cover a wide range of topics, from technical details to community involvement and future plans.</p>



<h3 class="wp-block-heading" id="h-exclusive-announcements">Exclusive Announcements</h3>



<p class="wp-block-paragraph">Stay tuned for exciting announcements about new features, upcoming releases, and other significant developments in the FreeBSD project. These announcements will highlight the ongoing efforts to improve and expand FreeBSD, ensuring that it remains at the forefront of open-source operating systems.</p>



<h3 class="wp-block-heading" id="h-historical-insights-and-user-stories">Historical Insights and User Stories</h3>



<p class="wp-block-paragraph">Throughout the week, we will share historical insights and user stories that highlight the impact of FreeBSD on individuals and organizations. These stories will showcase the diverse ways in which FreeBSD has been used to solve real-world problems, drive innovation, and support critical infrastructure.</p>



<h2 class="wp-block-heading" id="h-join-the-celebration">Join the Celebration</h2>



<p class="wp-block-paragraph">Whether you&#8217;re a long-time FreeBSD user, a newcomer curious about what FreeBSD has to offer, or simply a fan of open-source software, FreeBSD Week has something for you. Engage with the community on social media, share your own FreeBSD stories using the hashtag #FreeBSDWeek, and don&#8217;t miss out on the live events.</p>



<p class="wp-block-paragraph">FreeBSD has been a pillar of the open-source community for 31 years, and its success is a testament to the hard work and collaboration of its community members. Let&#8217;s come together to celebrate this incredible milestone and look forward to many more years of innovation and excellence.</p>



<p class="wp-block-paragraph">Stay tuned for more updates and join us in celebrating FreeBSD Day and the remarkable legacy of FreeBSD!</p>
<p>The post <a href="https://hamradio.my/2024/06/celebrating-freebsd-day-a-journey-through-31-years-of-open-source-excellence/">Celebrating FreeBSD Day: A Journey Through 31 Years of Open Source Excellence</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/2024/06/celebrating-freebsd-day-a-journey-through-31-years-of-open-source-excellence/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>APRS using open source software and hardware talk by 9W2SVT</title>
		<link>https://hamradio.my/2017/05/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/</link>
					<comments>https://hamradio.my/2017/05/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 21 May 2017 12:23:00 +0000</pubDate>
				<category><![CDATA[9M2PJU]]></category>
		<category><![CDATA[APRS]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[opensource]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2017/05/21/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/</guid>

					<description><![CDATA[<p>Stanley 9W2SVT giving talk on APRS at Malaysian open source conference 2017. UKM, Bangi. 19 May 2017. Prof Ir Dr Ahmad Faizal 9M2DX and XYL listening to the talk 9M2DX, 9W2SVT and 9M2PJU posted from Bloggeroid</p>
<p>The post <a href="https://hamradio.my/2017/05/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/">APRS using open source software and hardware talk by 9W2SVT</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[<div xmlns='http://www.w3.org/1999/xhtml'>Stanley 9W2SVT giving talk on APRS at Malaysian open source conference 2017. UKM, Bangi. 19 May 2017.</p>
<p><a href="https://lh3.googleusercontent.com/-vPVv92PyaDI/WSGG0ryLijI/AAAAAAAAIRo/hTzgeD97xOg_C69vxIT-3L-ahkldwvg2wCHM/s2560/%255BUNSET%255D"><img  title=""  alt="%255BUNSET%255D APRS using open source software and hardware talk by 9W2SVT" decoding="async" border="0" src="https://lh3.googleusercontent.com/-vPVv92PyaDI/WSGG0ryLijI/AAAAAAAAIRo/hTzgeD97xOg_C69vxIT-3L-ahkldwvg2wCHM/s640/%255BUNSET%255D" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" /></a></p>
<p>Prof Ir Dr Ahmad Faizal 9M2DX and XYL listening to the talk</p>
<p><a href="https://lh3.googleusercontent.com/-AEfEYiK6YAw/WSGG1IpXW2I/AAAAAAAAIRs/0kLy7AcUtx0yKCxpk7EgNVW-woKFAMTGwCHM/s2560/%255BUNSET%255D"><img  title=""  alt="%255BUNSET%255D APRS using open source software and hardware talk by 9W2SVT" decoding="async" border="0" src="https://lh3.googleusercontent.com/-AEfEYiK6YAw/WSGG1IpXW2I/AAAAAAAAIRs/0kLy7AcUtx0yKCxpk7EgNVW-woKFAMTGwCHM/s640/%255BUNSET%255D" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" /></a></p>
<p>9M2DX, 9W2SVT and 9M2PJU</p>
<p style='font-size: xx-small' align='right'>posted from <a href="https://market.android.com/details?id=pl.przemelek.android.blogger">Bloggeroid</a></p>
</div>
<p>The post <a href="https://hamradio.my/2017/05/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/">APRS using open source software and hardware talk by 9W2SVT</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/2017/05/aprs-using-open-source-software-and-hardware-talk-by-9w2svt/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Thanks Ubuntu Project!</title>
		<link>https://hamradio.my/2013/08/thanks-ubuntu-project/</link>
					<comments>https://hamradio.my/2013/08/thanks-ubuntu-project/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sat, 24 Aug 2013 08:32:00 +0000</pubDate>
				<category><![CDATA[canonical]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[free operating system]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu members]]></category>
		<category><![CDATA[ubuntu-hams]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2013/08/24/thanks-ubuntu-project/</guid>

					<description><![CDATA[<p>I would like to thank to Ubuntu project, Ubuntu community especially people in planet.ubuntu.com, ubuntu-hams for their tremendous support and being friendly to me. Ubuntu changed how the world thinks about free operating system. Ubuntu gave knowledges to those who are hunger and eager to learn more about operating system. Ubuntu changed the way ham [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2013/08/thanks-ubuntu-project/">Thanks Ubuntu Project!</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[<div style="clear: both; text-align: center;">
<a href="http://lh4.ggpht.com/-ixyvVzhDlNw/UhhvDhZBJXI/AAAAAAAADlk/OWkmm13sf0Q/s1600/20130824_155705.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="20130824_155705 Thanks Ubuntu Project!" decoding="async" border="0" height="300" src="http://lh4.ggpht.com/-ixyvVzhDlNw/UhhvDhZBJXI/AAAAAAAADlk/OWkmm13sf0Q/s400/20130824_155705.jpg" width="400" /></a></div>
<div dir="ltr">
</div>
<div dir="ltr">
I would like to thank to Ubuntu project, Ubuntu community especially people in planet.ubuntu.com, ubuntu-hams for their tremendous support and being friendly to me.</div>
<div dir="ltr">
</div>
<div dir="ltr">
Ubuntu changed how the world thinks about free operating system. Ubuntu gave knowledges to those who are hunger and eager to learn more about operating system.</div>
<div dir="ltr">
</div>
<div dir="ltr">
Ubuntu changed the way ham radio operators use their computer. Ubuntu changed the way kids knowing their computer. </div>
<div dir="ltr">
</div>
<div dir="ltr">
Thanks Ubuntu project!</div>
<div style="clear: both; text-align: center;">
 </div>
<p>The post <a href="https://hamradio.my/2013/08/thanks-ubuntu-project/">Thanks Ubuntu Project!</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/2013/08/thanks-ubuntu-project/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux On PengPod1000</title>
		<link>https://hamradio.my/2013/06/kb1oiq-andys-ham-radio-linux-on-pengpod1000/</link>
					<comments>https://hamradio.my/2013/06/kb1oiq-andys-ham-radio-linux-on-pengpod1000/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 18 Jun 2013 13:35:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2013/06/18/kb1oiq-andys-ham-radio-linux-on-pengpod1000/</guid>

					<description><![CDATA[<p>To those who own a PengPod1000, feels free to try&#160;KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux on your device. KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux is a custom operating system based on Ubuntu. It&#8217;s target is for amateur radio usage. For more info, visit&#160;http://sourceforge.net/projects/kb1oiq-andysham/ Direct link download for PengPod100 image,&#160;http://sourceforge.net/projects/kb1oiq-andysham/files/pengpod_image_4GiB.dd.gz/download The included amateur radio software is [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2013/06/kb1oiq-andys-ham-radio-linux-on-pengpod1000/">KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux On PengPod1000</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[<div style="clear: both; text-align: center;">
<a href="http://2.bp.blogspot.com/-7Wr89ma_DGE/UcBgxFpCRGI/AAAAAAAADbQ/2iwod1yBS24/s1600/pp1000newa.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="pp1000newa KB1OIQ - Andy&#039;s Ham Radio Linux On PengPod1000" decoding="async" border="0" height="224" src="http://2.bp.blogspot.com/-7Wr89ma_DGE/UcBgxFpCRGI/AAAAAAAADbQ/2iwod1yBS24/s320/pp1000newa.png" width="320" /></a></div>
<p>
To those who own a PengPod1000, feels free to try&nbsp;KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux on your device.</p>
<p>KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux is a custom operating system based on Ubuntu. It&#8217;s target is for amateur radio usage. For more info, visit&nbsp;<a href="http://sourceforge.net/projects/kb1oiq-andysham/">http://sourceforge.net/projects/kb1oiq-andysham/</a></p>
<p>Direct link download for PengPod100 image,&nbsp;<a href="http://sourceforge.net/projects/kb1oiq-andysham/files/pengpod_image_4GiB.dd.gz/download">http://sourceforge.net/projects/kb1oiq-andysham/files/pengpod_image_4GiB.dd.gz/download</a></p>
<p>The included amateur radio software is shown</p>
<ul>
<li>aa-analyzer.pl &#8211; command line program used with RigExpert AA-xxx analyzers</li>
<li>chirp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; used to program frequencies into HTs (chirpw)</li>
<li>cqrlog &nbsp; &nbsp; &nbsp; &nbsp; &#8211; a full featured QSO logging program</li>
<li>cwwav &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; command line program to convert text files to CW wav or mp3</li>
<li>earthtrack &nbsp; &nbsp; &#8211; used with predict and xplanet to display satellites</li>
<li>flamp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; NBEMS program for Amateur Multicast Protocol (AMP)</li>
<li>fldigi &nbsp; &nbsp; &nbsp; &nbsp; &#8211; digital modes such as PSK31 (NBEMS)</li>
<li>flmsg &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; companion to fldigi, a simple forms management editor for standard message formats (NBEMS)</li>
<li>fllog &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; to provide a common log across networked computers</li>
<li>flrig &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; rig control</li>
<li>flwkey &nbsp; &nbsp; &nbsp; &nbsp; &#8211; modem program for the K1EL Winkeyer series</li>
<li>flwrap &nbsp; &nbsp; &nbsp; &nbsp; &#8211; companion to fldigi, file encapsulation / compression</li>
<li>Fl Moxgen &nbsp; &nbsp; &nbsp;&#8211; Moxon Rectangle antenna design program</li>
<li>gerbv &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; view Gerber files</li>
<li>glfer &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; QRSS (slow CW) or DFCW (Dual Frequency CW) modes</li>
<li>gpredict &nbsp; &nbsp; &nbsp; &#8211; satellite tracking</li>
<li>gqrx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; software defined radio receiver</li>
<li>grig &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; rig control software</li>
<li>gspiceui &nbsp; &nbsp; &nbsp; &#8211; GUI interface for spice</li>
<li>gwave &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; analog waveform viewer (e.g. spice output)</li>
<li>hamlib &nbsp; &nbsp; &nbsp; &nbsp; &#8211; radio control library</li>
<li>ibp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; HF beacons</li>
<li>net &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; a net control logging program by W1HKJ</li>
<li>owx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; Open Wouxun, command line programs for Wouxun HTs</li>
<li>pcb &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; interactive printed circuit board editor</li>
<li>predict &nbsp; &nbsp; &nbsp; &nbsp;&#8211; predict orbits of satellites (used with earthtrack)</li>
<li>qrq &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; CW callsign practice</li>
<li>qsstv &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; SSTV (slow scan TV)</li>
<li>qtel &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; Echolink client</li>
<li>soundmodem &nbsp; &nbsp; &#8211; user mode driver for packet radio (useful with xastir)</li>
<li>splat &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; command line HF propagation prediction</li>
<li>sunclock &nbsp; &nbsp; &nbsp; &#8211; track day/night line on Earth</li>
<li>svxlink &nbsp; &nbsp; &nbsp; &nbsp;&#8211; Echolink server</li>
<li>TQSL &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; used with ARRL Logbook of the World</li>
<li>TQSL Cert &nbsp; &nbsp; &nbsp;&#8211; used with ARRL Logbook of the World</li>
<li>voacapl &nbsp; &nbsp; &nbsp; &nbsp;&#8211; VOACAP for Linux &#8211; propagation prediction</li>
<li>wsjt &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; weak signal communication</li>
<li>wspr &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; weak signal communication</li>
<li>xastir &nbsp; &nbsp; &nbsp; &nbsp; &#8211; APRS mapping</li>
<li>xcwcp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; CW code practice</li>
<li>xdx &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#8211; DX cluster TCP/IP client</li>
<li>xlog &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8211; simpler QSO logging program</li>
<li>xnec2c &nbsp; &nbsp; &nbsp; &nbsp; &#8211; antenna modeling software</li>
<li>xplanet &nbsp; &nbsp; &nbsp; &nbsp;&#8211; used by earthtrack and predict to track satellites</li>
<li>xwxapt &nbsp; &nbsp; &nbsp; &nbsp; &#8211; display APT images from weather satellites</li>
</ul>
<p>The post <a href="https://hamradio.my/2013/06/kb1oiq-andys-ham-radio-linux-on-pengpod1000/">KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux On PengPod1000</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/2013/06/kb1oiq-andys-ham-radio-linux-on-pengpod1000/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>List Of Linux Operating System For Ham Radio Operator</title>
		<link>https://hamradio.my/2013/04/list-of-linux-operating-system-for-ham-radio-operator/</link>
					<comments>https://hamradio.my/2013/04/list-of-linux-operating-system-for-ham-radio-operator/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 29 Apr 2013 04:07:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[ham radio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2013/04/29/list-of-linux-operating-system-for-ham-radio-operator/</guid>

					<description><![CDATA[<p>Linux is new anymore, there are many custom Linux operating system that was designed for ham radio operators. Here are the list of famous Linux operating system for ham radio usage 1. KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux DVD &#8211; This is a remastered version of Ubuntu Linux. As of version 13, there are 32-bit [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2013/04/list-of-linux-operating-system-for-ham-radio-operator/">List Of Linux Operating System For Ham Radio Operator</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[<div style="clear: both; text-align: center;">
<a href="http://4.bp.blogspot.com/-GR8vGiESnzo/UX3xgQjOQVI/AAAAAAAAC4Y/hPmU4MqclCY/s1600/ham_tux.GIF" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="ham_tux List Of Linux Operating System For Ham Radio Operator" decoding="async" border="0" src="http://4.bp.blogspot.com/-GR8vGiESnzo/UX3xgQjOQVI/AAAAAAAAC4Y/hPmU4MqclCY/s1600/ham_tux.GIF" /></a></div>
<p>
Linux is new anymore, there are many custom Linux operating system that was designed for ham radio operators. Here are the list of famous Linux operating system for ham radio usage</p>
<p>1. KB1OIQ &#8211; Andy&#8217;s Ham Radio Linux DVD &#8211; This is a remastered version of Ubuntu Linux.  As of version 13, there are 32-bit and 64-bit versions available.</p>
<p>2. hamOS &#8211; A Debian based Live and Installable operating system for radio amateurs.<br />
  hamOS contains many preinstalled ham radio applications as well as a<br />
custom menu.  This respin is geared toward the newer linux user.  hamOS<br />
uses the lightweight LXDE desktop environment and is therefore suitable<br />
for older hardware.<br />
 Check out the GetExtras folder on the desktop to run some custom<br />
scripts that will automatically grab flash, codecs, and other non-libre<br />
software.</p>
<p>3. Ar-knoppix</p>
<p>4. Harv&#8217;s&nbsp;Hamshack Hack</p>
<p>5.&nbsp; Digipup &#8211; based on puppylinux (lightweight linux distribution)</p>
<p>6. Shackbox &#8211; Shackbox provide linux AND windows software like the famous ham radio<br />
deluxe, trunking software and a lot of other software related to<br />
electronics, antenna design and else.</p>
<p>7.&nbsp; Hamux &#8211; CentOS based repository with ham radio software.</p>
<p>However, you can choose any linux distro you like and install any ham radio applications that you desired. Since linux is opensource operating system, you can hack the source to suit your taste. Google, Yahoo also powered by linux operating system and small hardware such as switch, routers, acces point also powered by linux nowadays. Most of websites running on linux webservers. Happy Hamlinux-ing!</p>
<p>&nbsp; </p>
<p>The post <a href="https://hamradio.my/2013/04/list-of-linux-operating-system-for-ham-radio-operator/">List Of Linux Operating System For Ham Radio Operator</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/2013/04/list-of-linux-operating-system-for-ham-radio-operator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CHIRP &#8211; Opensource Memory Programmer</title>
		<link>https://hamradio.my/2012/09/chirp-opensource-memory-programmer/</link>
					<comments>https://hamradio.my/2012/09/chirp-opensource-memory-programmer/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 13 Sep 2012 19:02:00 +0000</pubDate>
				<category><![CDATA[alinco]]></category>
		<category><![CDATA[baofeng]]></category>
		<category><![CDATA[chirp]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[icom]]></category>
		<category><![CDATA[jetstream]]></category>
		<category><![CDATA[kenwood]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[puxing]]></category>
		<category><![CDATA[transceiver]]></category>
		<category><![CDATA[tyt]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[walkie-talkie]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wouxun]]></category>
		<category><![CDATA[yaesu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2012/09/13/chirp-opensource-memory-programmer/</guid>

					<description><![CDATA[<p>CHIRP is a free, open-source tool for programming your amateur radio. It supports a large number of manufacturers and models, as well as provides a way to interface with multiple data sources and formats. Available for Microsoft Windows, Linux and Mac OSX. Supported transceivers:- Alinco DR-03T DR-06T DR135T DR235T DR435T DJ596T Baofeng UV-3R UV-5R&#160;(in daily [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2012/09/chirp-opensource-memory-programmer/">CHIRP &#8211; Opensource Memory Programmer</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[<div style="clear: both; text-align: center;">
<a href="http://3.bp.blogspot.com/-dDJghqwB6R8/UFIscDSzWZI/AAAAAAAABDA/AUCEduoQW5Q/s1600/chirp.PNG" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="chirp CHIRP - Opensource Memory Programmer" loading="lazy" decoding="async" border="0" height="248" src="http://3.bp.blogspot.com/-dDJghqwB6R8/UFIscDSzWZI/AAAAAAAABDA/AUCEduoQW5Q/s320/chirp.PNG" width="320" /></a></div>
<p><span style="font-family: inherit;"><span style="background-color: white;"><br /></span></span><br />
<span style="font-family: inherit;"><span style="background-color: white;"><br /></span></span><br />
<span style="font-family: inherit;"><span style="background-color: white;">CHIRP is a free, open-source tool for programming your amateur radio. It supports a large number of manufacturers and models, as well as provides a way to interface with multiple data sources and formats.</span><br />
</span><br />
<span style="font-family: inherit;">Available for Microsoft Windows, Linux and Mac OSX.</p>
<p><u>Supported transceivers:-</u></span><br />
<span style="font-family: inherit;"><br /></span><br />
<span style="font-family: inherit;">Alinco</span></p>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DR-03T</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DR-06T</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DR135T</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DR235T</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DR435T</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">DJ596T</span></li>
</ul>
<p><span style="font-family: inherit;">Baofeng</span></p>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">UV-3R</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">UV-5R&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<p><span style="font-family: inherit;">Icom</span></p>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-80AD</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-2820H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">ID-800H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">ID-880H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-2200H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-91/92AD</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-V/U82</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">ID-RPx000V/RP2x</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-2100H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-2720H</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-T70</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-T7H&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-Q7A</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-W32A</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-746&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-7200</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">IC-7000</span></li>
</ul>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">ID-31A</span></li>
</ul>
<p><span style="font-family: inherit;">Jetstream</span></p>
<ul style="margin-bottom: 1em;">
<li><span style="font-family: inherit;">JT220M</span></li>
</ul>
<p><span style="background-color: white;"><span style="font-family: inherit;">Kenwood</span></span></p>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-D7A/G</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-D72</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-F6A</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-K2</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-271A/281A</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-D700</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-D710</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-G707&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-V7A</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TM-V71A</span></li>
</ul>
<p><span style="background-color: white;"><span style="font-family: inherit;">Puxing</span></span></p>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">PX-2R (UHF)</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">PX-777</span></li>
</ul>
<p><span style="background-color: white;"><span style="font-family: inherit;">TYT</span></span></p>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-UV3R&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">TH-UVF1&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<p><span style="background-color: white;"><span style="font-family: inherit;">Yaesu</span></span></p>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-60R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-817/ND</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-857/D</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-897</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-2800M</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-7800R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-7900R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-8800R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">FT-8900R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">VX-3R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">VX-5R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">VX-6R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">VX-7R</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">VX-8R</span></li>
</ul>
<p><span style="background-color: white;"><span style="font-family: inherit;">Wouxun</span></span></p>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">KG-UVD1P/UV2D/UV3D</span></li>
</ul>
<ul style="background-color: white; margin-bottom: 1em;">
<li><span style="font-family: inherit;">KG-UV6D/UV6X&nbsp;<em>(in daily builds)</em></span></li>
</ul>
<div>
<i><br /></i></div>
<p></p>
<div>
</p>
<div style="background-color: white;">
</div>
<p>For more info, please go to&nbsp;<a href="http://chirp.danplanet.com/projects/chirp/wiki/Home">http://chirp.danplanet.com/projects/chirp/wiki/Home</a></div>
<div>
</div>
<p>The post <a href="https://hamradio.my/2012/09/chirp-opensource-memory-programmer/">CHIRP &#8211; Opensource Memory Programmer</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/2012/09/chirp-opensource-memory-programmer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CQRLog &#8211; World&#8217;s Best Ham Radio Logging App For Linux</title>
		<link>https://hamradio.my/2012/09/cqrlog-worlds-best-ham-radio-logging-app-for-linux/</link>
					<comments>https://hamradio.my/2012/09/cqrlog-worlds-best-ham-radio-logging-app-for-linux/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 13 Sep 2012 04:05:00 +0000</pubDate>
				<category><![CDATA[amateur radio logging software]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dx cluster]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2012/09/13/cqrlog-worlds-best-ham-radio-logging-app-for-linux/</guid>

					<description><![CDATA[<p>CQRLOG is an advanced ham radio logger based on MySQL database. Provides radio control based on hamlib libraries (currently support of 140+ radio types and models), DX cluster connection, QRZ callbook (web version), a grayliner, internal QSL manager database support and a most accurate country resolution algorithm based on country tables developed by OK1RR. CQRLOG [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2012/09/cqrlog-worlds-best-ham-radio-logging-app-for-linux/">CQRLog &#8211; World&#8217;s Best Ham Radio Logging App For Linux</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[<p><span style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; text-align: justify;">CQRLOG is an advanced ham radio logger based on MySQL database. Provides radio control based on hamlib libraries (currently support of 140+ radio types and models), DX cluster connection, QRZ callbook (web version), a grayliner, internal QSL manager database support and a most accurate country resolution algorithm based on country tables developed by OK1RR. CQRLOG is intended for daily general logging of HF, CW &amp; SSB contacts and strongly focused on easy operation and maintenance.</span><br />
<br />
<span style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; text-align: justify;"><br /></span><br />
</p>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
This is an obvious question if you plan to migrate your logbook to another program promising more comfortable operation and less paperwork. Every program has its own preferences and gets its own group of satisfied users who says&nbsp;<i>&#8216;this is the best one, nothing else compares to ***&#8217;</i>&nbsp;etc. CQRLOG is not different.</div>
<div style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
</div>
<div style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
Also,&nbsp;<b>CQRLOG is a must:</b></div>
<ul style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;">
<li>if you are a dedicated DXer and/or Award hunter preferring &#8216;classic modes&#8217; CW and SSB, active on daily regular basis who has a lot of contacts in his log</li>
<li>if you want a highest possible number of details on the station you are working or calling</li>
<li>if you want to have a very accurate DXCC, zones and IOTA statistics on the fly</li>
<li>if you want painless processing of a high number of QSL cards, LoTW and/or eQSL records</li>
<li>if you prefer the ergonomy over colourful screens with lots of buttons and boxes</li>
<li>if your operating style presumes to be focused more to your radio and the on-the-air scene than to your computer</li>
<li>if you prefer linux over Windows and want a more advanced logbook program, if you don&#8217;t trust the commercial/shareware programs</li>
<li>if you are not satisfied with the support of your current logger</li>
</ul>
<p><br style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;" /></p>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
<b>CQRLOG would be probably an overkill:</b></div>
<ul style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;">
<li>if you are a casual operator with quite few (thousands) contacts in your log</li>
<li>if you operate mostly on local repeaters or in local SSB roundtables</li>
<li>if DX is not the matter</li>
<li>if you prefer digital modes, however CQRLOG integrates with FLDIGI, a high-end digital mode interface (sound card based software)</li>
<li>if you are a portable (SOTA etc.) guru using a minimalistic computer (ie. palmtop etc.)</li>
<li>if you are QSL manager who needs a tool for offline processing of many logs</li>
<li>if you are operator of a club station, where every member needs his own log</li>
</ul>
<p><br style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;" /></p>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
<b>CQRLOG is not for you:</b></div>
<ul style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;">
<li>if you want to use the same program for daily logging and contesting, however we don&#8217;t exclude a CQRLOG clone dedicated to the contesters</li>
<li>if you operate a remote station which needs software control of almost everything, ie. you don&#8217;t have any access to the front panel of your radio</li>
</ul>
<p><br style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px;" /></p>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
Anyway, CQRLOG is here and is for you. Try it out and if you decide to stay with this logger, we will be pleased. Of course, it will be very heartwarming if CQRLOG will became the reason to leave Windows and migrate to Linux.</div>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
Screenshots</div>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
</div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/new_qso.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="new_qso CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="268" src="http://www.cqrlog.com/images/new_qso.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/qso_list.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="qso_list CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="154" src="http://www.cqrlog.com/images/qso_list.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/dxcc_stat.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="dxcc_stat CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="230" src="http://www.cqrlog.com/images/dxcc_stat.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/users/ok2cqr.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="ok2cqr CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="200" src="http://www.cqrlog.com/images/users/ok2cqr.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/users/ik1dpa.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="ik1dpa CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="256" src="http://www.cqrlog.com/images/users/ik1dpa.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/users/do4nw.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="do4nw CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="200" src="http://www.cqrlog.com/images/users/do4nw.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
<a href="http://www.cqrlog.com/images/users/om0xa.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="om0xa CQRLog - World&#039;s Best Ham Radio Logging App For Linux" loading="lazy" decoding="async" border="0" height="200" src="http://www.cqrlog.com/images/users/om0xa.png" width="320" /></a></div>
<div style="clear: both; text-align: center;">
</div>
<div style="clear: both; text-align: left;">
For more info, please go to&nbsp;<a href="http://www.cqrlog.com/">http://www.cqrlog.com</a></div>
<div style="clear: both; text-align: left;">
</div>
<div style="clear: both; text-align: left;">
</div>
<div align="JUSTIFY" style="color: #535353; font-family: sans-serif, Arial, Verdana, Helvetica; font-size: 13px; line-height: 16px; margin-bottom: 0.9em; margin-top: 0.5em;">
</div>
<p>The post <a href="https://hamradio.my/2012/09/cqrlog-worlds-best-ham-radio-logging-app-for-linux/">CQRLog &#8211; World&#8217;s Best Ham Radio Logging App For Linux</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/2012/09/cqrlog-worlds-best-ham-radio-logging-app-for-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MYCallsign App For Android</title>
		<link>https://hamradio.my/2012/08/mycallsign-app-for-android/</link>
					<comments>https://hamradio.my/2012/08/mycallsign-app-for-android/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 06 Aug 2012 09:52:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[callsign]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[malaysia]]></category>
		<category><![CDATA[mycallsign]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[radio amatur]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2012/08/06/mycallsign-app-for-android/</guid>

					<description><![CDATA[<p>MYCallsign for android devices has arrived! Handy app for looking up Malaysian Hamradio callsign Android application for looking up Malaysian Amateur Radio (hamradio) callsign. User only need to key-in the ham callsign that they wished to view and the application will automatically display relevant information related to the hamradio operator. Please download it here and [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2012/08/mycallsign-app-for-android/">MYCallsign App For Android</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[<p>MYCallsign for android devices has arrived!</p>
<blockquote><p>
Handy app for looking up Malaysian Hamradio callsign<br />
Android<br />
application for looking up Malaysian Amateur Radio (hamradio) callsign.<br />
User only need to key-in the ham callsign that they wished to view and<br />
the application will automatically display relevant information related<br />
to the hamradio operator.</p></blockquote>
<p>
Please download it here and try it yourself, <a href="https://play.google.com/store/apps/details?id=net.mypapit.mobile.callsignview&amp;feature=search_result#?t=W251bGwsMSwyLDEsIm5ldC5teXBhcGl0Lm1vYmlsZS5jYWxsc2lnbnZpZXciXQ..">MYcallsign on Google Play</a></p>
<div style="clear: both; text-align: center;">
<a href="http://1.bp.blogspot.com/-E2GztzfHCAw/UB-Sc6qPvbI/AAAAAAAAA-s/hFhLC5Y75_w/s1600/mycallsignandroid.PNG" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="mycallsignandroid MYCallsign App For Android" loading="lazy" decoding="async" border="0" height="400" src="http://1.bp.blogspot.com/-E2GztzfHCAw/UB-Sc6qPvbI/AAAAAAAAA-s/hFhLC5Y75_w/s400/mycallsignandroid.PNG" width="240" /></a></div>
<p></p>
<div style="clear: both; text-align: center;">
<a href="http://1.bp.blogspot.com/-v0R_eVTlYzM/UB-SdkuANkI/AAAAAAAAA-0/qByKsDkr58c/s1600/mycallsignandroid2.PNG" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="mycallsignandroid2 MYCallsign App For Android" loading="lazy" decoding="async" border="0" height="400" src="http://1.bp.blogspot.com/-v0R_eVTlYzM/UB-SdkuANkI/AAAAAAAAA-0/qByKsDkr58c/s400/mycallsignandroid2.PNG" width="240" /></a></div>
<p>
If you like this app, dont forget to rate it on Google Play.</p>
<p>This app was developed by En. Hafiz (9W2WTF).</p>
<p>Source code at <a href="https://code.google.com/p/mycallsign-android/">https://code.google.com/p/mycallsign-android/</a></p>
<dl itemscope="" itemtype="http://schema.org/MobileSoftwareApplication">
<dt>App info:</dt>
<dt>&nbsp;</dt>
<dt>Updated:<time itemprop="datePublished"> August 5, 2012</time></dt>
<dt>Current Version: 0.9</dt>
<dt content="Android" itemprop="operatingSystems">Requires Android: 2.2 and up</dt>
<dt>Size: 368k</dt>
</dl>
<p>The post <a href="https://hamradio.my/2012/08/mycallsign-app-for-android/">MYCallsign App For Android</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/2012/08/mycallsign-app-for-android/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Squid Proxy pfSense Firewall Router</title>
		<link>https://hamradio.my/2012/03/squid-proxy-pfsense-firewall-router/</link>
					<comments>https://hamradio.my/2012/03/squid-proxy-pfsense-firewall-router/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 13 Mar 2012 12:44:00 +0000</pubDate>
				<category><![CDATA[acceleration]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[pfsense]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[squid]]></category>
		<category><![CDATA[web caching]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2012/03/13/squid-proxy-pfsense-firewall-router/</guid>

					<description><![CDATA[<p>pfSense adalah satu firewall operating system yang boleh didapati percuma. Berasaskan FreeBSD, firewall ataupun dinding api ini merupakan satu komponen yang penting dalam rangkaian anda tidak kira di rumah ataupun di pejabat. Simple networking ataupun mesh networking, firewall dapat menghalang dan memberi halangan pertama kepada rangkaian anda supaya tidak dicerobohi oleh pihak yang tidak diingini. [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2012/03/squid-proxy-pfsense-firewall-router/">Squid Proxy pfSense Firewall Router</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[<p>pfSense adalah satu firewall operating system yang boleh didapati percuma. Berasaskan FreeBSD, firewall ataupun dinding api ini merupakan satu komponen yang penting dalam rangkaian anda tidak kira di rumah ataupun di pejabat. Simple networking ataupun mesh networking, firewall dapat menghalang dan memberi halangan pertama kepada rangkaian anda supaya tidak dicerobohi oleh pihak yang tidak diingini. Banyak lagi fungsi pfSense termasuk VPN, DHCP server, Proxy, Network antivirus dan lain-lain. Untuk mengetahui tentang firewall dengan lebih lanjut, sila ke&nbsp;<a href="http://en.wikipedia.org/wiki/Firewall_(computing)">http://en.wikipedia.org/wiki/Firewall_(computing)</a></p>
<p>Squid merupakan proxy software yang sangat diminati ramai pengguna kerana squid adalah robust, high performance dan boleh di &#8220;tune&#8221; mengikut keperluan anda.</p>
<p>Gabungan kedua elemen ini sangat memuaskan hati, dimana pfsense dan squid dapat memberi khidmat yang baik kepada pengguna rangkaian. Squid perlu di &#8220;tweak&#8221; dan ditampal dengan patch supaya dapat menjadikannya agressive dan greedy. Storage yang besar diperlukan apabila squid telah diubahsuai.</p>
<p>Lihat prestasi kerja squid yang telah dipatch, terpasang dalam firewall pfSense</p>
<p><iframe loading="lazy" allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/Hq5cFZJUFnI" width="560"></iframe></p>
<p>The post <a href="https://hamradio.my/2012/03/squid-proxy-pfsense-firewall-router/">Squid Proxy pfSense Firewall Router</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/2012/03/squid-proxy-pfsense-firewall-router/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Project: Bluetooth Morse code Keyboard</title>
		<link>https://hamradio.my/2011/08/project-bluetooth-morse-code-keyboard/</link>
					<comments>https://hamradio.my/2011/08/project-bluetooth-morse-code-keyboard/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 02 Aug 2011 17:21:00 +0000</pubDate>
				<category><![CDATA[communication]]></category>
		<category><![CDATA[do it yourself]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[internet radio liking project]]></category>
		<category><![CDATA[kod morse]]></category>
		<category><![CDATA[morse code]]></category>
		<category><![CDATA[n5him]]></category>
		<category><![CDATA[opensource]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/08/02/project-bluetooth-morse-code-keyboard/</guid>

					<description><![CDATA[<p>Demo of a Morse code keyboard linked to a computer over Bluetooth.&#160;More details including source code and schematics can be found at http://zunkworks.com/BluetoothMorseKeyboard</p>
<p>The post <a href="https://hamradio.my/2011/08/project-bluetooth-morse-code-keyboard/">Project: Bluetooth Morse code Keyboard</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[<p><iframe loading="lazy" allowfullscreen="" frameborder="0" height="349" src="http://www.youtube.com/embed/2mTEevUbbUU" width="425"></iframe></p>
<p>Demo of a Morse code keyboard linked to a computer over Bluetooth.&nbsp;More details including source code and schematics can be found at <a href="http://zunkworks.com/BluetoothMorseKeyboard">http://zunkworks.com/BluetoothMorseKeyboard</a></p>
<p>The post <a href="https://hamradio.my/2011/08/project-bluetooth-morse-code-keyboard/">Project: Bluetooth Morse code Keyboard</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/2011/08/project-bluetooth-morse-code-keyboard/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Cascata &#8211; an Arduino Waterfall by WA5ZNU</title>
		<link>https://hamradio.my/2011/07/cascata-an-arduino-waterfall-by-wa5znu/</link>
					<comments>https://hamradio.my/2011/07/cascata-an-arduino-waterfall-by-wa5znu/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 14 Jul 2011 18:06:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[wa5znu]]></category>
		<category><![CDATA[waterfall]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/07/14/cascata-an-arduino-waterfall-by-wa5znu/</guid>

					<description><![CDATA[<p>What is Cascata? Cascata is an Arduino Waterfall display program built using the Arduino and the Sparkfun Color LCD Shield. It has a selectable 0-4 kHz or 0-2 kHz audio range, and can display a waterfall, a spectrum graph, or both. It features variable attenuation and automatic DC centering. Background Ham radio operators use a [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/07/cascata-an-arduino-waterfall-by-wa5znu/">Cascata &#8211; an Arduino Waterfall by WA5ZNU</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[<div style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-XU-3z2wH7xg/Th8v9pv5DjI/AAAAAAAAAKI/Cedicnwgy58/s1600/cascata.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="cascata Cascata - an Arduino Waterfall by WA5ZNU" loading="lazy" decoding="async" border="0" height="276" src="http://3.bp.blogspot.com/-XU-3z2wH7xg/Th8v9pv5DjI/AAAAAAAAAKI/Cedicnwgy58/s320/cascata.jpg" width="320" /></a></div>
<p>What is Cascata?</p>
<p>Cascata is an Arduino Waterfall display program built using the Arduino and the Sparkfun Color LCD Shield.</p>
<p>It has a selectable 0-4 kHz or 0-2 kHz audio range, and can display a waterfall, a spectrum graph, or both. It features variable attenuation and automatic DC centering.</p>
<p>Background</p>
<p>Ham radio operators use a signal visualization display called a &#8220;Waterfall&#8221; to plot signal strength and frequency against time on a scrolling display. This type of display is common in both digital mode radio programs and in software-defined radio displays.</p>
<p>Cascata is a simple project using an Arduino and a Nokia LCD color display to provide a pocket-sized display for field operations, or for computer-free operations.</p>
<p>Cascata requires a small amount of soldering and and can serve as an introduction to the Arduino for ham radio operators, or an introduction to ham radio for Arduino enthusiasts.</p>
<p>Video</p>
<p><iframe loading="lazy" allowfullscreen="" frameborder="0" height="349" src="http://www.youtube.com/embed/o4oW2X8QVhk" width="425"></iframe></p>
<p>Source Code</p>
<p>Here is the Arduino Sketch, including the updated LCD and FFT code:</p>
<p><a href="http://wa5znu.org/2011/07/cascata/Cascata-20110707.zip">Cascata-20110707.zip</a></p>
<p>The software is built using enhanced versions of the Mark Sproul LCD library and the FFT Code is the Roberts/Slaney/Bourras/DEIF FFT library with bug fixes in 8-bit conversion. All is included in the zip file, which you can unzip into your Arduino Sketches directory. It will create a new project called Cascata.</p>
<p>Operation</p>
<ul>
<li>Top button switches modes: Display, Bandwidth, Attenuation</li>
<li>Buttons 2 and 3 are up/down. (The Sparkfun LCD Breakout Board doesn&#8217;t have button 3, but the Arduino Shield does. Both buttons cycle through all the choices, so you can use this firmware with the 2-button version.)</li>
<li>Display: Waterfall+Spectrum, Waterfall, Spectrum</li>
<li>Bandwidth: 0-4 kHz, 0-2 kHz</li>
<li>Attenuation: -3, -2, -1, 0 1, 2, 3. Negative values are &#8220;gain&#8221;.</li>
</ul>
<p>
The voltage reference is set to the internal 1.1v band-gap, and the bias network below sets the center point to about half of that value, when referenced to the 5v supply. The firmware automatically determines the DC reference point and the 0.1uF input capacitor AC couples the signal.</p>
<p>If your input signal voltage is too low, use the Attenuator adjustment to change to lower values.</p>
<p>LCD Construction</p>
<p>The SparkFun Color LCD Arduino Shield requires headers be soldered on.</p>
<p>A convenient option is the Sparkfun stackable header set. These headers allow easy access to the Arduino pins, but they stick up a bit above the LCD board and may make it hard to put in a case. If you have plans for build this project in a case, you may want to use a non-standard Arduino (such as the Ardweeny) and in that case you may want the SparkFun Color LCD Breakout Board, but you will sacrifice one button.</p>
<p>Interfacing</p>
<p>The Arduino 2009 and Uno have a choice among 5V ADC reference, internal 1.1V ADC reference, or external reference. 5V is too high for audio input, so we&#8217;ll chose the simply 1.1V internal reference. A resistor divider produces approximately 0.55v using standard value resistors, and a 0.01uF capacitor tacked onto the bottom of the Arduino bypasses the VREF signal to ground to reduce noise.</p>
<p>I built my input network on a protoboard first, then &#8220;flying-lead&#8221; style, but you could put it on a small piece of perfboard and use header pins to attach to the LCD Shield. A 3.5mm audio jack completes the interface, which I plugged into the headphone jack of my radio.</p>
<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-IlueMk909vo/Th8vZOhPBoI/AAAAAAAAAKA/oqyIn3-Auy0/s1600/schematic.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="schematic Cascata - an Arduino Waterfall by WA5ZNU" loading="lazy" decoding="async" border="0" height="227" src="http://1.bp.blogspot.com/-IlueMk909vo/Th8vZOhPBoI/AAAAAAAAAKA/oqyIn3-Auy0/s320/schematic.jpg" width="320" /></a></div>
<p></p>
<div style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-cYK1qBFdu4w/Th8vj7QZqUI/AAAAAAAAAKE/XogZKpwUEQE/s1600/vref-bypass-capacitor.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="vref-bypass-capacitor Cascata - an Arduino Waterfall by WA5ZNU" loading="lazy" decoding="async" border="0" height="180" src="http://2.bp.blogspot.com/-cYK1qBFdu4w/Th8vj7QZqUI/AAAAAAAAAKE/XogZKpwUEQE/s320/vref-bypass-capacitor.jpg" width="320" /></a></div>
<ul>
<li>Tack a 0.01uF capacitor on the bottom of the Arduino from VREF to ground.</li>
<li>Install the Arduino LCD Shield with socketed headers.</li>
<li>On the shield headers, put a 15 k Ohm resistor into the Arduino 5V pin to the ground pin below the LCD.</li>
<li>Solder a 1.8 k Ohm resistor from the ground side of the above resistor. Put the other end into Analog input 1.</li>
<li>Solder a 0.01 uF capacitor to the 1.8 k Ohm resistor at the Arduino analog input 1 pin.</li>
<li>Input voltage should be +/- 0.5v max.</li>
</ul>
<p>
Drawbacks</p>
<p>Noise: The default value of the Attenuator is 1, which eliminates the LSB of ADC and cuts down on some of the noise. The 0.1uF capacitor added to the bottom of the Arduino board before VREF and ground helps with the noise some, but doing any better would require quiescing the CPU before the ADC measurement, further reducing the signal bandwidth and processing time available.</p>
<p>Sample time: Sampling at 8kHz takes 125μs, and it takes 100μs for each ADC operation. That leaves only 25μ per sample or 6.4ms for a 256 sample row. That&#8217;s not enough time to do the FFT or Display, so we drop samples between lines.</p>
<p>Future Directions</p>
<p>Cascata is designed to be a project for you to undertake and extend. Here are some ideas for ways to move forward:</p>
<p>Put it in a box?</p>
<p>The SparkFun LCD board doesn&#8217;t fit nicely in the SparkFun Arduino Shield Case, however with the Sparkfun Color LCD Breakout Board and the SolarBotics Ardweeny and a 5V regulator, you could make a much smaller device in a nice case.</p>
<p>Decode PSK31?</p>
<p>Add a mode to disable display and decode PSK31. Is there enough time in 6.4ms/row to do the decimation, filtering, phase detection, bit decoding, and Varicode conversion?</p>
<p>Make it faster?</p>
<p>At 16 MHz, the Arduino is a wonder at getting this DSP done. Switch to a 72 MHz Maple Board and you could have enough cycles left over to do something really interesting.</p>
<p>Expand the bandwidth?</p>
<p>Can you use aliasing to sample a much wider bandwidth? Since the output display size is limited to about 128 pixels, you would need to do decimation anyway.</p>
<p>Narrow the bandwidth?</p>
<p>David (WB4ONA) asks if you could narrow the bandwidth to 200 Hz, for use as a display with QRSS or other ultra-low bandwidth modes. I think you need to integrate over time; perhaps the Joe Taylor (K1JT) WSTJ source code would be a good start for techniques.</p>
<p>Oscilloscope Output?</p>
<p>Instead of an LCD display, display on an attached oscilloscope using a single DAC (either an I2C DAC from SparkFun or an op-amp/integrator DAC). Use one of the digital out pins for trigger. You could use a green-screen CRT scope, or a portable digital scope that you already have. You won&#8217;t get a waterfall, but instead a spectrum display.</p>
<p>Similar Projects</p>
<ul>
<li><a href="http://blurtime.blogspot.com/2010/11/arduino-realtime-audio-spectrum.html">Arduino Realtime Audio Spectrum</a>. This turned up in searches when I looked for Arduino FFT and I got a lot of ideas from here. It&#8217;s good to be able to share ideas across ham and Arduino projects. I found a link to the FFT from reading this post, but had to fix a few bugs to make it work at 256 samples.</li>
<li><a href="http://www.gabotronics.com/development-boards/xmega-xprotolab.htm">Gabotronics XProtolab GT-0010</a> This is a great board and I recently bought one. The framework source is available, including an ASM version of FFT, but the DSO source isn&#8217;t open.</li>
</ul>
<p>
<i>credits to <a href="http://wa5znu.org/2011/07/cascata/">http://wa5znu.org/2011/07/cascata/</a></i></p>
<p></p>
<ul></ul>
<p>The post <a href="https://hamradio.my/2011/07/cascata-an-arduino-waterfall-by-wa5znu/">Cascata &#8211; an Arduino Waterfall by WA5ZNU</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/2011/07/cascata-an-arduino-waterfall-by-wa5znu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ATrack &#8211; APRS Client For OpenMoko Freerunner</title>
		<link>https://hamradio.my/2011/06/atrack-aprs-client-for-openmoko-freerunner/</link>
					<comments>https://hamradio.my/2011/06/atrack-aprs-client-for-openmoko-freerunner/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 19 Jun 2011 16:08:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[APRS]]></category>
		<category><![CDATA[atrack]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[neo freerunner]]></category>
		<category><![CDATA[openmoko]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[realtime tracking]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/06/19/atrack-aprs-client-for-openmoko-freerunner/</guid>

					<description><![CDATA[<p>APRS tracker and communicator for mobile devices written in python / elementary. Targeted especially for the Openmoko Freerunner it utilizes FSO freesmartphone middleware framework. Tested and used on SHR, where atrack is in repos, so to install type: opkg install atrack Atrack can also track on different services, i.e. support for youloc.net, but then it [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/06/atrack-aprs-client-for-openmoko-freerunner/">ATrack &#8211; APRS Client For OpenMoko Freerunner</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[<p><span style="font-family: Georgia, 'Times New Roman', serif;">APRS tracker and communicator for mobile devices written in python / elementary. Targeted especially for the Openmoko Freerunner it utilizes FSO freesmartphone middleware framework. Tested and used on SHR, where atrack is in repos, so to install type: opkg install atrack</span><br />
<span style="font-family: Georgia, 'Times New Roman', serif;"><br />
</span><br />
<span style="font-family: Georgia, 'Times New Roman', serif;">Atrack can also track on different services, i.e. support for youloc.net, but then it acts as a dumb tracker.</span><br />
<span style="font-family: Georgia, 'Times New Roman', serif;"><br />
</span><br />
<span style="font-family: Georgia, 'Times New Roman', serif;">Please note that usage within the aprs network requires amateur radio license, but for non-commercial usage you can run your own FOSS aprsd server http://sourceforge.net/projects/aprsd/, this is given by the license of the APRS protocol, both aprsd server and atrack are FOSS). You can also run a fake small perl script server PrivateAPRS_IS_FakeServer</span><br />
<span style="font-family: Georgia, 'Times New Roman', serif;"><br />
</span></p>
<div style="font-size: 13px; line-height: 1.25em; max-width: 64em;"></div>
<h1 style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: none; background-origin: initial; font-size: x-large; margin-top: 0px; max-width: 700px; padding-left: 0px; border: 0px initial initial;"><span style="font-family: Georgia, 'Times New Roman', serif;"> </span></h1>
<h1 style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: none; background-origin: initial; font-size: x-large; margin-top: 0px; max-width: 700px; padding-left: 0px; border: 0px initial initial;"><span style="font-family: Georgia, 'Times New Roman', serif;"><a href="http://www.blogger.com/post-create.g?blogID=5720339990533817277" name="Features"></a>Features</span></h1>
<ul style="font-size: 13px; max-width: 62em; padding-left: 25px;">
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">aprs login with a try to autoreconnect on failure</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">aprs filter support</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">receive messages/bulletins</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">create/reply/forward message</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">predefined text strings for quick messaging</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">predefined list of recipients</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">ack autosend</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">tracking + smart tracking &#8211; corner pegging (tracking on APRS and also on <a style="color: #0000cc;" href="http://youloc.net/" rel="nofollow">http://youloc.net/</a> )</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">packet compression used on all packets</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">pause tracking during phone call</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">send status message</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">send last know location</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">calculate locator grid</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">display nearby stations, objects, items</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">edit/save into conf file</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">portrait/landscape/fullscreen/day/night mode</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">screen dim/suspend blocking</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">APRS Query &#8211; replying to aprs query for position and status</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">send any Direct query, predefined Q for P, S, M, O, H, D</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">create, edit Objects and Items with predefined names</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">Mic-E encoded packets initial support (shows some funny failures sometimes)</span></li>
<li style="margin-bottom: 0.3em;"><span style="font-family: Georgia, 'Times New Roman', serif;">display a map with position with an object/station &#8211; based on Openstreetmap or actually on <a style="color: #0000cc;" href="http://ojw.dev.openstreetmap.org/StaticMap/" rel="nofollow">http://ojw.dev.openstreetmap.org/StaticMap/</a></span></li>
</ul>
<h1 style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: none; background-origin: initial; font-size: x-large; margin-top: 0px; max-width: 700px; padding-left: 0px; border: 0px initial initial;"><span style="font-family: Georgia, 'Times New Roman', serif;"><a href="http://www.blogger.com/post-create.g?blogID=5720339990533817277" name="Requires"></a>Requires</span></h1>
<ul style="font-size: 13px; max-width: 62em; padding-left: 25px;">
<li style="margin-bottom: 0.3em;"><a style="color: #0000cc;" href="http://python.org/" rel="nofollow"><span style="font-family: Georgia, 'Times New Roman', serif;">python</span></a></li>
<li style="margin-bottom: 0.3em;"><a style="color: #0000cc;" href="http://trac.enlightenment.org/e/wiki/Elementary" rel="nofollow"><span style="font-family: Georgia, 'Times New Roman', serif;">elementary</span></a></li>
<li style="margin-bottom: 0.3em;"><a style="color: #0000cc;" href="http://www.freesmartphone.org/" rel="nofollow"><span style="font-family: Georgia, 'Times New Roman', serif;">FSO freesmartphone middleware framework</span></a></li>
</ul>
<p><a href="http://code.google.com/p/atrack/"><span style="font-family: Georgia, 'Times New Roman', serif;">http://code.google.com/p/atrack/</span></a></p>
<p>The post <a href="https://hamradio.my/2011/06/atrack-aprs-client-for-openmoko-freerunner/">ATrack &#8211; APRS Client For OpenMoko Freerunner</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/2011/06/atrack-aprs-client-for-openmoko-freerunner/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu – A Ham&#8217;s Best Friend</title>
		<link>https://hamradio.my/2011/06/ubuntu-a-hams-best-friend/</link>
					<comments>https://hamradio.my/2011/06/ubuntu-a-hams-best-friend/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 17 Jun 2011 21:28:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[free operating system]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-hams]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/06/17/ubuntu-a-hams-best-friend/</guid>

					<description><![CDATA[<p>The following will appear in &#8220;In the DARC&#8221; &#8211; the Dallas Amateur Radio Club Newsletter for May, 2007. I “chucked” Windows (the operating system) about four years ago. Why? I was tired of reformatting, reinstalling, defragmenting, and forever tinkering with the “registry” to get the darn thing to work. My Windows experience always went something [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/06/ubuntu-a-hams-best-friend/">Ubuntu – A Ham&#8217;s Best Friend</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[<p><span style="color: #333333; font-family: Georgia, serif; font-size: 13px;"><b>The following will appear in &#8220;In the DARC&#8221; &#8211; the Dallas Amateur Radio Club Newsletter for May, 2007.</b></p>
<p><b><span style="font-size: 17px;"></span></b></span></p>
<div style="line-height: 1.6em; margin-bottom: 0.75em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"></div>
<p>
I “chucked” Windows (the operating system) about four years ago. Why? I was tired of reformatting, reinstalling, defragmenting, and forever tinkering with the “registry” to get the darn thing to work. My Windows experience always went something like this – perhaps you&#8217;ve had similar moments: one day Windows is working fine – the next – either a hacker, upgrade, or installation gunged the thing beyond repair and it&#8217;s spewing corrupted data worse than anything seen in&nbsp;<i>The Exorcist</i>. Personally I&#8217;ve reloaded Windows so many times, I&#8217;ve memorized all the little “helpful hints” displayed on screen during the lengthly reload. Operating systems are for operating, otherwise they would be named “Loading Systems”.</p>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Now, I don&#8217;t worry about that anymore. I don&#8217;t even use Windows. More on that later.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Today we have a “new” Windows OS called “Vista” and for $200 you can get the latest version, install it , and then, for another $300 add<i>Office</i>, and fork another $50 for HRD or other ham software. Oh, and did I mention&nbsp;<i>Vista</i>&nbsp;slows your computer down to a crawl? By the time you get this thing “up and running” you will have already spent between $500 and $1000 for software AND hardware.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Now, wouldn&#8217;t you rather spend that kind of money on a new radio, do-dad, toy, or maybe dinner out with the XYL, rather than on an operating system with looks “prettier” than XP but doesn&#8217;t really DO all that much more?</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">I thought not.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">I offer you an alternative. Join the growing ranks of Linux! What? That dweebed out, wonk-anized, impossible-to-understand, operating system?</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Okay, it&#8217;s time to come to a realization. First, let me pull you up close and whisper this in your ear so the neighbors can&#8217;t hear:</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<ol>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Your house and car are outfitted with numerous antennas and radios, which means your stuff already looks like a NASA ground station and the neighbors think you secretly communicate with old Communists and Banana Republic dictators anyhow – so it&#8217;s not that huge of a leap to “jump into” a more geeky operating system, is it? You can do it!</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;"></div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Still not convinced? How about if I told you over 100 FREE ham programs await you – not to mention the operating system will run AX.25 natively (packet radio, man!), out of the box, without emulators, kludges, or other confusing Windows like “fixes”.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;"></div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">And what if I told you, installing programs on Linux can be done with the click of a button – no compiling, decompressing files, and other time consuming and frustrating processes.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;"></div>
</ol>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">It&#8217;s all true. The latest release of Ubuntu (it&#8217;s an African Bantu word for social “alliances and relationships” meaing Ubuntu was created by a comminity of programmers who play well with each other) will run on your current PC, plus give you some “Vista” like features, and, here&#8217;s the holy grail, run all the free Amateur Radio programs you can imagine (I&#8217;ve included a list in this article).</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">I can hear the comments already:</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;"><a href="http://2.bp.blogspot.com/_6uDEcO0ZF5g/RhZxcSHoJlI/AAAAAAAAAAc/JGAQQ51W6BY/s1600-h/Screenshot-Synaptic+Package+Manager+.png" style="color: #5588aa; text-decoration: none;"><img  title="" decoding="async"  alt="Screenshot-Synaptic+Package+Manager+ Ubuntu – A Ham&#039;s Best Friend"  border="0" id="BLOGGER_PHOTO_ID_5050348762856695378" src="http://2.bp.blogspot.com/_6uDEcO0ZF5g/RhZxcSHoJlI/AAAAAAAAAAc/JGAQQ51W6BY/s320/Screenshot-Synaptic+Package+Manager+.png" style="border-bottom-color: rgb(204, 204, 204); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(204, 204, 204); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(204, 204, 204); border-top-style: solid; border-top-width: 1px; cursor: pointer; float: right; margin-bottom: 10px; margin-left: 10px; margin-right: 0pt; margin-top: 0pt; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px;" /></a></div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">“But I can&#8217;t load that stuff on my computer – I don&#8217;t know how!”</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">“Bill Gates will come over to my house and beat me up!”</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">“I still have a bunch of programs I still run on my Commodore 64 I have stashed next to the bed.”</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Okay, I can&#8217;t help you with the last comment, but you can actually buy (or build) a very conservative computer with everything you need for under $200, but I&#8217;ll save that for another article.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Fortunately for all of us, Ubuntu is available on a DVD for FREE! No, you don&#8217;t even pay postage (or you can download it from the “internets”). If you go the “mail route”, you&#8217;ll wait about three weeks for your choice of disks (Intel based, AMD64, or PowerPC – give your old Mac new life!) to show up but it&#8217;s all free. The OS is compact and can be loaded in about 30 minutes (see if&nbsp;<i>Vista</i>&nbsp;or your 900<sup>th</sup>&nbsp;reload of XP goes that quickly!). There&#8217;s relatively painless network (or dialup) setup and the graphical interface works almost exactly like XP (actually better, as the “Start” menu is replaced with “Applications”, “Places”, and “System” for different OS functions. Microsoft should have thought of that one!</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">If you&#8217;re nervous about going to Ubuntu, but would like to try it – the DVD will also allow you to “try it live” &#8211; no files are written to your existing machine. The only down side, of course, is you can&#8217;t load a bunch of programs onto a read-only “CD”. But there&#8217;s a reasonably easy way to try before you make the big jump. You&#8217;ll need a reasonalbly large, hard drive , on your existing Windows machine just “spin up” your Ubuntu disk and the Superior OS will make room on your hard drive and create a “dual boot” function. Simply stated; at startup you can choose between “Bill” or Ubuntu! (Pick Ubuntu! Pick Ubuntu!) It can&#8217;t get much easier than that.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">When connecting the OS to your radio, you&#8217;ll need to do some tweaking on the RS-232 or USB interfaces, but I found one evening Googling the issues solved that (and you are willing to make the jump, I&#8217;ll help you get your PC set up!). Within 24 hours I was on 144.390 APRS using nothing more than my TNC-2, Yaseu FT-8900, and my Ubuntu laptop. How cool is that? (Okay, it&#8217;s geeky – but it&#8217;s cool to my geeky friends!)</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Linux&#8217; maturity over the last 5 years as a “server solution” is well known in the business community (ask Novell). But with Ubuntu, the revolutionary OS has finally broken through to desktops by heeding the feedback of Windows and Mac users and taking some well thought out ideas from both those releases. Inspired Ubuntu developers mimic the best from both operating systems, while offering up an interface which is intuitive and usable for the “technical super genious” to the average user; it&#8217;s perfect for the typical ham who is obviously somewhere “in between”.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Give it a try, I think you&#8217;ll love it as much as I do.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">Ed. Note – this article and pictures were created on a really old Pentium III clone, with Ubuntu using&nbsp;<i>OpenOffice</i>&nbsp;and&nbsp;<i>Gimp&nbsp;</i><span style="font-style: normal;">(free Linux programs).</span>&nbsp;No hard drives were harmed while producing this article.</div>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<p><i><a href="http://ke5icx.blogspot.com/2007/04/following-will-appear-in-in-darc-dallas.html">from&nbsp;http://ke5icx.blogspot.com/2007/04/following-will-appear-in-in-darc-dallas.html</a></i></p>
<p>
<span style="color: #333333; font-family: Georgia, serif; font-size: 13px;"></span></p>
<div style="line-height: 1.6em; margin-bottom: 0cm; margin-left: 0px; margin-right: 0px; margin-top: 0px;">
</div>
<p>The post <a href="https://hamradio.my/2011/06/ubuntu-a-hams-best-friend/">Ubuntu – A Ham&#8217;s Best Friend</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/2011/06/ubuntu-a-hams-best-friend/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>XASTIR &#8211; An Opensource APRS application</title>
		<link>https://hamradio.my/2011/06/xastir-an-opensource-aprs-application/</link>
					<comments>https://hamradio.my/2011/06/xastir-an-opensource-aprs-application/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 16 Jun 2011 19:27:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[APRS]]></category>
		<category><![CDATA[automatic packet reporting system]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[realtime tracking]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wb4apr]]></category>
		<category><![CDATA[xastir]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/06/16/xastir-an-opensource-aprs-application/</guid>

					<description><![CDATA[<p>Automatic Packet Reporting System (APRS™) (also known as &#8220;Automatic Position Reporting System&#8221;) is an amateur radio based digital communication system for real-time exchange of digital information to users on the network. APRS was originally developed by Bob Bruninga, WB4APR more than 20 years ago. It has since evolved into a robust system of interconnected networks. [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/06/xastir-an-opensource-aprs-application/">XASTIR &#8211; An Opensource APRS application</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[<p>Automatic Packet Reporting System (APRS<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />) (also known as &#8220;Automatic Position Reporting System&#8221;) is an amateur radio based digital communication system for real-time exchange of digital information to users on the network. APRS was originally developed by Bob Bruninga, WB4APR more than 20 years ago. It has since evolved into a robust system of interconnected networks. Xastir is a computer application that provides client access to this network using the APRS protocol.</p>
<div style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-1B-5d6OvgQA/TfpZDL9S2dI/AAAAAAAAADg/_Vgb8chbZbQ/s1600/xastir2.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="xastir2 XASTIR - An Opensource APRS application" loading="lazy" decoding="async" border="0" height="340" src="http://2.bp.blogspot.com/-1B-5d6OvgQA/TfpZDL9S2dI/AAAAAAAAADg/_Vgb8chbZbQ/s400/xastir2.png" width="400" /></a></div>
<p>
Xastir is an open source software project maintained by Developers and Contributors from all over the globe and is provided free under the GNU General Public License. From its early beginnings, Xastir has evolved into a very robust client with a rich feature set that rivals any other APRS client.</p>
<p>&nbsp;Xastir APRS Client is a FREE! software program that will run on several different operating systems, including Linux and Windows. Amateur Radio operators trained in the use of Xastir run the program which is attached to two-way amateur radio and TNC (radio modem). The Xastir software program is backed by active developer and user communities.</p>
<p>A few features of Xastir</p>
<ol>
<li>Connection with the Internet and several TNCs possible</li>
<li>Support of the AX.25 kernel driver</li>
<li>Logging of all data</li>
<li>Vector and pixel maps</li>
<li>Overlay of maps possible</li>
<li>Storable map views</li>
<li>Speech output for special events with sound files</li>
<li>Speech output with speech synthesis</li>
<li>Extensive display configuration</li>
<li>The following map formats are supported in the moment</li>
</ol>
<div style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-fcFre-rFE7M/TfpY8r9o3zI/AAAAAAAAADc/KeLuk93d5bE/s1600/xastir1.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="xastir1 XASTIR - An Opensource APRS application" loading="lazy" decoding="async" border="0" height="250" src="http://4.bp.blogspot.com/-fcFre-rFE7M/TfpY8r9o3zI/AAAAAAAAADc/KeLuk93d5bE/s400/xastir1.png" width="400" /></a></div>
<ul>
<li>Vector maps in WinAPRS format</li>
<li>Maps in GeoTIFF format (with GeoTiff library)</li>
<li>Pixel maps as xpm file</li>
<li>American county maps for weather alerts</li>
<li>Graphics file in 68 different formats, e.g. gif (with ImageMagick)</li>
<li>Shape files</li>
</ul>
<div>
<div style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-bkMWGvgWrMQ/TfpZxJ5WptI/AAAAAAAAADk/tcZel8wNkBM/s1600/aprsfi.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="aprsfi XASTIR - An Opensource APRS application" loading="lazy" decoding="async" border="0" height="293" src="http://2.bp.blogspot.com/-bkMWGvgWrMQ/TfpZxJ5WptI/AAAAAAAAADk/tcZel8wNkBM/s400/aprsfi.png" width="400" /></a></div>
<p>
</div>
<p>The post <a href="https://hamradio.my/2011/06/xastir-an-opensource-aprs-application/">XASTIR &#8211; An Opensource APRS application</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/2011/06/xastir-an-opensource-aprs-application/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Gpredict For Hunting Satellites</title>
		<link>https://hamradio.my/2011/06/gpredict-for-hunting-satellites/</link>
					<comments>https://hamradio.my/2011/06/gpredict-for-hunting-satellites/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 16 Jun 2011 19:15:00 +0000</pubDate>
				<category><![CDATA[free software]]></category>
		<category><![CDATA[gpredict]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[international space station]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[realtime tracking]]></category>
		<category><![CDATA[satellite]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/06/16/gpredict-for-hunting-satellites/</guid>

					<description><![CDATA[<p>Gpredict is a real-time satellite tracking and orbit prediction application. It can track an unlimited number of satellites and display their position and other data in lists, tables, maps, and polar plots (radar view). Gpredict can also predict the time of future passes for a satellite, and provide you with detailed information about each pass. [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/06/gpredict-for-hunting-satellites/">Gpredict For Hunting Satellites</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[<p>Gpredict is a real-time satellite tracking and orbit prediction application. It can track an unlimited number of satellites and display their position and other data in lists, tables, maps, and polar plots (radar view). Gpredict can also predict the time of future passes for a satellite, and provide you with detailed information about each pass.</p>
<div style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-xESGObNbzNA/TfpVqdI04qI/AAAAAAAAADM/7piqbt4M-oY/s1600/gpredict.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gpredict Gpredict For Hunting Satellites" loading="lazy" decoding="async" border="0" height="400" src="http://2.bp.blogspot.com/-xESGObNbzNA/TfpVqdI04qI/AAAAAAAAADM/7piqbt4M-oY/s400/gpredict.png" width="381" /></a></div>
<p>
Gpredict is different from other satellite tracking programs in that it allows you to group the satellites into visualisation modules. Each of these modules can be configured independently from the others giving you unlimited flexibility concerning the look and feel of the modules. Naturally, Gpredict will also allow you to track satellites relatively to different observer locations &#8211; at the same time.</p>
<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-fxuWgQq2oRg/TfpV3PkodHI/AAAAAAAAADQ/FChImdTcQfc/s1600/gpredictiss.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gpredictiss Gpredict For Hunting Satellites" loading="lazy" decoding="async" border="0" height="400" src="http://1.bp.blogspot.com/-fxuWgQq2oRg/TfpV3PkodHI/AAAAAAAAADQ/FChImdTcQfc/s400/gpredictiss.png" width="366" /></a></div>
<p>Gpredict is free software licensed under the GNU General Public License. This gives you the freedom to use and modify gpredict to suit your needs. Gpredict is available as source package as well as precompiled binaries for Linux, Mac OS X, and Windows via third parties.</p>
<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-bBnTm0vnq7A/TfpV6IJqBEI/AAAAAAAAADU/e70IPnylt5k/s1600/gpredictorbit.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gpredictorbit Gpredict For Hunting Satellites" loading="lazy" decoding="async" border="0" height="400" src="http://1.bp.blogspot.com/-bBnTm0vnq7A/TfpV6IJqBEI/AAAAAAAAADU/e70IPnylt5k/s400/gpredictorbit.png" width="367" /></a></div>
<p>
This application is suitable to amateur radio operator who loved to hunt satellites or birds in hamradio lingo.</p>
<p>The post <a href="https://hamradio.my/2011/06/gpredict-for-hunting-satellites/">Gpredict For Hunting Satellites</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/2011/06/gpredict-for-hunting-satellites/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>GNU Radio &#8211; Opensource Software Defined Radio (SDR)</title>
		<link>https://hamradio.my/2011/05/gnu-radio-opensource-software-defined-radio-sdr/</link>
					<comments>https://hamradio.my/2011/05/gnu-radio-opensource-software-defined-radio-sdr/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 16 May 2011 20:35:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[gnuradio]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[radio amatur]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usrp]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/05/16/gnu-radio-opensource-software-defined-radio-sdr/</guid>

					<description><![CDATA[<p>GNU Radio is an open source Software Defined Radio (SDR) project that was started about ten years ago by Eric Blossom, an electrical engineer. The main idea which is behind this project, as its founder says, was to turn all the hardware problems into software problems, that is move the complexity of a radio equipment [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/05/gnu-radio-opensource-software-defined-radio-sdr/">GNU Radio &#8211; Opensource Software Defined Radio (SDR)</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[<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-bAkqUQ2Z_y0/Tcr2ZYGDhRI/AAAAAAAAABM/c_IuFPF6RlY/s1600/gnuradio_00.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gnuradio_00 GNU Radio - Opensource Software Defined Radio (SDR)" loading="lazy" decoding="async" border="0" height="159" src="http://1.bp.blogspot.com/-bAkqUQ2Z_y0/Tcr2ZYGDhRI/AAAAAAAAABM/c_IuFPF6RlY/s320/gnuradio_00.jpg" width="320" /></a></div>
<p><b>GNU Radio</b> is an<b> open source Software Defined Radio</b> (SDR) project that was started about ten years ago by Eric Blossom, an electrical engineer. The main idea which is behind this project, as its founder says, was to turn all the hardware problems into software problems, that is move the complexity of a radio equipment from the hardware level to the software one, and get the software as close to the antenna as possible.</p>
<p><b>Advantages of SDR</b></p>
<p>Software defined radio has some advantages that were not been possible before:</p>
<ol>
<li>It can be reconfigured &#8220;on-the-fly&#8221;</li>
<li>It can be easily and rapidly upgraded with new software versions or enhanced features</li>
<li>It is possible to talk and listen to multiple channels at the same time</li>
</ol>
<p>
<b>What is the story of GNU Radio?</b></p>
<p>Blossom initiated this project because he was disappointed by the SDR projects available at that time: all of them had a proprietary nature, and he wanted to bring the free-software philosophy into the SDR world. Richard Stallman, the GNU Project founder, liked Blossom’s idea and agreed to take the project under the GNU aegis.</p>
<p>So far, the GNU Radio project has not disappointed its affiliates and supporters. Eric Blossom, together with his development colleague Matt Ettus, have realized a project which can turn an ordinary PC into a good quality radio receiver; the only additional hardware required are a “low-cost” RF tuner and an analog-to-digital converter to convert the received signal into digital samples. GNU Radio is a free software development toolkit which allows to develop a custom non commercial radio receiver just combining and interconnecting appropriate software modules, as if they were functional blocks (the package include about 100 modules, but others can be added to the initial library). Each module is able to perform a specific signal processing function (for example a mixer, a phase lock loop, a filter), with a real-time behavior and with high-throughput; for this reason, a recent PC with enough processing capability and memory shall be used. With the GNU Radio approach, the designer is a software developer who builds the radio by creating a graph (in a similar way to what happens in the graph theory) where the vertices are signal processing blocks and the edges represent the data flow between them. The signal processing blocks are normally implemented in C++, whereas the graph structure is defined in Python. GNU Radio is well known and widely used especially in academic environments and among hobbyists and radio amateurs; it is used either to implement real and working radio equipments, or just as a research project in the area of wireless communication and transmission. GNU Radio software modules support various modulations (GMSK, PSK, QAM, OFDM), error corrections codes (Reed-Solomon, Viterbi, Turbo Codes), and signal processing capabilities (filters, FFTs, equalizers, timing recovery).</p>
<p>GNU Radio applications are mainly written in Python; however, the critical and low-level algorithms and signal processing modules are written using the C/C++ programming language, with wide usage of floating-point specific instructions for the relevant processor. Python is primarily used to setup the flow graph, after that most of the work is done in C/C++. GNU Radio is simple to use and a radio receiver can be created in a fast and straightforward manner; moreover, the development of a signal processing algorithm can be carried out using a pre-recorded or generated data set, thus allowing the development without the need for a real RF hardware. An example of minimal hardware required to work with GNU Radio is offered by the USRP, developed by Ettus Research LLC.</p>
<p>
<b>What is USRP?</b></p>
<p>USRP, which stands for Universal Software Radio Peripheral, is a general purpose motherboard which can host a wide selection of daughterboards, each of which implements a signal processing block found in the GNU Radio software package. The original USRP is a low cost software radio device which connects to the host computer through a USB 2.0 interface, and can send up to 16 MHz of RF bandwidth in both directions. It hosts an FPGA which can be reprogrammed, 4 high-speed Analog to Digital Converters (ADCs), 4 high-speed Digital to Analog Converters DACs), and many auxiliary analog and digital I/Os.</p>
<p>The following pictures show how the USRP looks like, externally and internally, respectively.</p>
<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-mA1mcU7Hrt8/Tcr29m0eVJI/AAAAAAAAABQ/ChHwB2PBkTo/s1600/gnur_01.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gnur_01 GNU Radio - Opensource Software Defined Radio (SDR)" loading="lazy" decoding="async" border="0" height="211" src="http://1.bp.blogspot.com/-mA1mcU7Hrt8/Tcr29m0eVJI/AAAAAAAAABQ/ChHwB2PBkTo/s400/gnur_01.jpg" width="400" /></a></div>
<p></p>
<div style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-3IyctdPy1Gc/Tcr3KR9NREI/AAAAAAAAABU/6nt4VEohHlc/s1600/gnur_02.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="gnur_02 GNU Radio - Opensource Software Defined Radio (SDR)" loading="lazy" decoding="async" border="0" height="400" src="http://1.bp.blogspot.com/-3IyctdPy1Gc/Tcr3KR9NREI/AAAAAAAAABU/6nt4VEohHlc/s400/gnur_02.jpg" width="326" /></a></div>
<p>The USRP contains two Analog Devices AD9862 mixed signal analog front end devices connected to an Altera Cyclone EP1C12 FPGA where most of the initial downconversion is done within the RX chain. The USRP family includes:</p>
<ol>
<li>DC to 30 MHz receiver</li>
<li>DC to 30 MHz transmitter</li>
<li>1 MHz to 250 MHz receiver</li>
<li>1 MHz to 250 MHz transmitter</li>
<li>50 to 860 MHz receiver</li>
<li>800 MHz to 2.4 GHz receiver</li>
<li>400-500 MHz transceiver</li>
<li>750-1050 MHz transceiver (including cell and ISM bands)</li>
<li>1150-1450 MHz transceiver</li>
<li>1.5-2.1 GHz transceiver (including PCS bands)</li>
<li>2.3-2.9 GHz transceiver (including ISM band)</li>
</ol>
<p>
The motherboard shown in the above picture is equipped with 4 daughterboards: 2 Tx modules and 2 Rx modules.</p>
<p><b>The GNU Radio USRP2</b></p>
<p>The USRP2 is based on its successful predecessor, the original USRP, providing the following new capabilities:</p>
<ol>
<li>Gigabit Ethernet interface</li>
<li>25 MHz of instantaneous RF bandwidth</li>
<li>Xilinx Spartan 3-2000 FPGA, which can even operate the device in a stand-alone way, without requiring connection to a host computer</li>
<li>Dual 100 MHz 14-bit ADCs</li>
<li>Dual 400 MHz 16-bit DACs</li>
<li>1 Mb of high-speed SRAM</li>
<li>Locking to an external 10 MHz reference</li>
<li>1 PPS (pulse per second) input</li>
<li>Configuration stored on standard SD cards</li>
<li>Standalone operation</li>
<li>The ability to lock multiple systems together for MIMO</li>
<li>Compatibility with all the same daughterboards as the original USRP</li>
</ol>
<p>
USRP2 is initially supported on Linux, but drivers will be available also for Windows, Mac OS X, and other operating systems.</p>
<p>GNU Radio applications</p>
<p>The GNU Radio package is provided with a complete HDTV transmitter and receiver, a spectrum analyzer, an oscilloscope, a multichannel receiver and a wide collection of modulators and demodulators. Other advanced projects are still in the feasibility phase or in progress:</p>
<ol>
<li>A system able to recording multiple stations simultaneously</li>
<li>Time Division Multiple Access (TDMA) waveforms</li>
<li>A passive radar system that takes advantage of broadcast TV for its signal source</li>
<li>Radio astronomy</li>
<li>Digital Radio Mundial (DRM)</li>
<li>Software GPS</li>
<li>Amateur radio transceivers</li>
</ol>
<p>For more info, please go to:</p>
<ol>
<li><a href="http://gnuradio.org/redmine/wiki/gnuradio">http://gnuradio.org/redmine/wiki/gnuradio</a></li>
<li> <a href="http://en.wikipedia.org/wiki/GNU_Radio">http://en.wikipedia.org/wiki/GNU_Radio</a></li>
</ol>
<ol></ol>
<p>The post <a href="https://hamradio.my/2011/05/gnu-radio-opensource-software-defined-radio-sdr/">GNU Radio &#8211; Opensource Software Defined Radio (SDR)</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/2011/05/gnu-radio-opensource-software-defined-radio-sdr/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu For Amateur Radio Operator</title>
		<link>https://hamradio.my/2011/03/ubuntu-for-amateur-radio-operator/</link>
					<comments>https://hamradio.my/2011/03/ubuntu-for-amateur-radio-operator/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 29 Mar 2011 08:49:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[free operating system]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[radio amatur]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/03/29/ubuntu-for-amateur-radio-operator/</guid>

					<description><![CDATA[<p>Bert Kolts, AB0VI kolts1@estesvalley.net This free operating system provides your PC with all of the usual features, including lots of ham radio applications. If you have wanted to upgrade your PC to a new operating system, but haven’t wanted to pay the high cost for some commercial packages, then you might want to consider the [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2011/03/ubuntu-for-amateur-radio-operator/">Ubuntu For Amateur Radio Operator</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[<p>Bert Kolts, AB0VI</p>
<p>kolts1@estesvalley.net</p>
<p>This free operating system provides your PC with all of the usual features, including lots of ham radio applications.</p>
<p>If you have wanted to upgrade your PC to a new operating system, but haven’t wanted to pay the high cost for some commercial packages, then you might want to consider the world of open source software. Contrary to popular belief, there are several options available for PC operating systems.</p>
<p>After a string of never ending system bugs and finally a hard drive crash, I was finally prompted to look for an alternative operating system for my PC. The hard drive was easily replaced, but I wanted an operating system (OS) that wasn’t going to cost me hundreds of dollars, that would be more robust and would support my ham radio operation.</p>
<p>A suggestion from a friend and a little time spent surfing the Web quickly led me to the Ubuntu Web site. It looked like a good option, but the most important question in my mind was whether it would support any ham radio applications.</p>
<p>What is Ubuntu?</p>
<p>Simply put, Ubuntu is a full-fledged operating system based on Linux (the PC version of UNIX) that has a similar look and feel to other popular OSs, such as Microsoft Windows. The Ubuntu OS supports all of the usual PC functions but with software that is all open sourced. This means that the operating system and all of the programs that it includes are totally free. Over the last few years, Ubuntu has gained in popularity to the point where some PC vendors are now offering it as an option with some of their new products.</p>
<p>In case you might be wondering about the name Ubuntu, it is a concept that comes from several South African languages. It’s one of those terms that does not translate well into English, but according to The Official Ubuntu Book it can be roughly translated as meaning “humanity toward others,” or “I am because we are.”</p>
<p>The Ubuntu desktop looks similar to those of other operating systems. Figure 1 shows the desktop that I use for version 8.04 (also referred to as Hardy Heron). You might notice that the desktop does not have any individual program icons, but this is simply a matter of personal preference, icons can be added if you wish. All of my programs are listed under the APPLICATIONS menu, located at the top left of the display, where I can organize them into folders by program type. Also located in that corner of the display is the PLACES menu, which contains such items as disc drives and networks, as well as folders for pictures, videos, music, etc. The SYSTEMS menu has user preferences and system administration menus.</p>
<p>The Ubuntu OS uses Firefox as a Web browser and Evolution for e-mail. For office applications the OpenOffice suite is provided, which supports a full featured word processor, spreadsheets, presentations and more. The system also includes the usual games, photo, video and music programs as well. Some of the video programs will even support the European video formats. This is an important feature if you have friends or relatives in Europe, as we do, who like to send you home videos of the grandchildren.</p>
<p>Hardware support is good too. I have two different PCs that interface with a router, one via LAN and another wireless. Each has a different printer as well. All of these devices, including the wireless USB adapter, were identified during system installation and simply worked with no problems. Ubuntu supports a wide range of both old and new hardware and peripherals. A list of the supported hardware can be found on the Ubuntu Web site.</p>
<p>If you would like to give Ubuntu a trial run, you can go to their Web site and download the OS, or order a free CD. You could also choose to buy one of the books that provide an introduction to Ubuntu, many of which will also include a CD. Just be sure that the included CD is one of the recent Ubuntu releases. Version 10.04, Lucid Lynx, is the latest, as of this writing.</p>
<p>When installing the OS, you will discover that you have several options. You can either run Ubuntu directly from the CD, just to try it without installing it on your hard drive, or you can create a dual boot configuration and have both Ubuntu and your old OS available. Of course you can also take the big jump and simply install Ubuntu as your only OS.</p>
<p>With the OS up and running, software updates and support are likely to be the next concern. The Ubuntu community, which consists of developers and users, provides periodic software updates, documentation and user forums. These help to assure that your system is kept up to date and that users have a resource for questions and problems should they arise.</p>
<p>Ham Radio Applications</p>
<p>At this point, since Ubuntu is beginning to look like a really viable alternative OS, the next big issue is whether it will support the ham radio applications that we want to run. Fortunately, the answer to this question is — yes it will.</p>
<p>One of the nice features of Ubuntu is the Synaptic Package Manager. This system lets you search through thousands of programs for specific types of applications and once found, download and install them onto your PC. All of this is done in one simple operation. To help make life easier, the programs within the Package Manager are categorized by type, such as games, mathematics, network and science. There is even a separate category for Amateur Radio.</p>
<p>The ham radio applications include programs for Morse code training, APRS and packet programs, rig control, CW and digital mode terminal applications, satellite tracking, Smith Charts, logging, DX clusters and more. In most cases there are multiple programs available for each of these applications and there is also a logging program that interfaces with LoTW.</p>
<p>As an example, I use the program Xlog, shown in Figure 2, for my log. This program not only provides basic contact logging, but it also tracks your scoring for important awards and checks for previously worked stations. In addition to this, Xlog can also read your rig’s frequency, mode and power via the serial port. For contesters, there is a CW keyer mode that allows you to program the function keys with CW messages and, of course, it can also import and export log data in several common formats.</p>
<p>There are a number of programs available for Ubuntu that will support the various digital operating modes. One popular program for digital mode operation is fldigi. This program, shown in Figure 3, supports several digital modes including: CW, PSK, HELL, Olivia, RTTY and more. It also has the ability to perform rig control, measure frequency (calibrated to WWV), log contacts, run in contest mode and interface with QRZ.com.</p>
<p>Wine — It’s Not Just for Drinking</p>
<p>But what happens if you can’t find a Linux application for the task you need and a Windows program is the only solution? Fortunately all is not lost, because there are several ways that you can run Windows based programs on Ubuntu. One of these ways is with Wine.</p>
<p>Wine is a software package that lets you run many Windows applications within the Ubuntu Linux environment. It creates a virtual C: drive on your hard disc and there you will find the familiar Windows folder “Program Files” that contains your Windows applications. When you run a Windows application in Ubuntu it will execute under Wine, but the display will look just like does when it executes from a Windows operating system.</p>
<p>Figure 4 shows an example of the Windows program CircuitMaker, a circuit simulation program, running under Wine. CircuitMaker is an old program that is no longer supported, but in this case I needed this old Windows program to support some of my older homebrew projects. It runs as well now with Ubuntu and Wine as it did with my old Windows system.</p>
<p>The much newer circuit simulation program, LtspiceIV from Linear Technologies, can be run with Wine as well. I downloaded the file a few days ago and it loads and runs on my PC with no problems whatsoever.</p>
<p>Schematic capture and PCB layout applications are also necessary tools for those of us who like to do homebrew projects. The PCB vendor that I like to use for my PC boards provides free schematic and layout software, but unfortunately their software is only available in Windows versions. (Will software vendors ever learn that there are some of us who prefer to operate in Linux? Sigh.) Once again, it only took me about a minute to download their software onto the Wine C: drive and install the programs. As expected, they ran perfectly with no problems.</p>
<p>[Note that the Wine emulator works well for smaller applications such as those described above, but it should not be considered a replacement for a Windows OS. Most of the larger, more complex programs that run smoothly under Windows will run erratically — or not at all — in the Wine environment. — Ed.]</p>
<p>The Bottom Line</p>
<p>In today’s tight economy many of us are looking to get the most bang for our computer buck. Ubuntu, with all of its standard features and functionality, its large library of Linux based ham radio applications and its ability to run Windows applications if necessary, is certainly a viable option when considering an operating system upgrade. Best of all, since the Ubuntu system is open source software, this is all available for free, which makes Ubuntu Linux and ham radio a hard combination to beat. After 2 years of running Ubuntu on two of my home PCs, I find that the more I use it the more I like it, so give it a try.</p>
<p>More Information</p>
<p>This article can’t even begin to describe all of the functions, features and applications available with Ubuntu, so for more information about Ubuntu, Linux, Wine or any of the other applications mentioned here, or to download software, try the following links: Ubuntu, OpenOffice, FireFox, Evolution, Wine, fldigi, Xlog.</p>
<p>The following two books are the ones that I keep next to my computer and refer to most often. They provide a good introduction to Ubuntu for the novice user and they contain Ubuntu CDs.</p>
<p>• Hill, Burger, Jesse, &amp; Bacon; The Official Ubuntu Book; Prentice Hall, 2008.</p>
<p>This is a good overview of Ubuntu, including its history.</p>
<p>• Grant, Rickford; Ubuntu for Non-Geeks; No Starch Press, 2008.</p>
<p>This book provides a lot of good practical “how to” information for the Ubuntu beginner.</p>
<p>All photos are by the author.</p>
<p>Bert Kolts, AB0VI, an ARRL Life Member, was first licensed in 1960 (previously WA2VQB and WA0WZI) and now holds an Extra class license. Bert is a retired electrical engineer who spent 37 years working for Hewlett Packard and its spin-off Agilent Technologies. He is currently refreshing his German via online courses, learning to program in Python and of course hamming, where he works mostly CW and PSK31. Bert has published numerous professional articles on test and measurement and has also articles in QEX and QST. Bert can be reached at 253 Steamer Ct, Estes Park, CO 80517.</p>
<p>
<i>taken from <a href="http://www.arrl.org/ubuntu-linux-for-hams">http://www.arrl.org/ubuntu-linux-for-hams</a></i><br />
<i><br />
</i><br />
<b>Get Ubuntu now&nbsp;<a href="http://www.ubuntu.com/">http://www.ubuntu.com</a></b><br />
<b><br />
</b><br />
<b>To learn how to use Ubuntu, please download Ubuntu pocket guide here&nbsp;<a href="http://www.ubuntupocketguide.com/download_main.html">http://www.ubuntupocketguide.com/</a></b><br />
<b><br />
</b><br />
<b>Join us as Ubuntu ham radio operator&nbsp;<a href="https://wiki.ubuntu.com/UbuntuHams">https://wiki.ubuntu.com/UbuntuHams</a>&nbsp;and check out our activities. If you like CW, dont hesitate to have a CWIRC Chat on irc.freenode.net #CW.</b><br />
<b><br />
</b></p>
<p>The post <a href="https://hamradio.my/2011/03/ubuntu-for-amateur-radio-operator/">Ubuntu For Amateur Radio Operator</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/2011/03/ubuntu-for-amateur-radio-operator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>/dev/dsp CWIRC Problem On Ubuntu</title>
		<link>https://hamradio.my/2011/03/dev-dsp-cwirc-problem-on-ubuntu/</link>
					<comments>https://hamradio.my/2011/03/dev-dsp-cwirc-problem-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 24 Mar 2011 03:30:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[cwirc]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[morse code]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xchat]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2011/03/24/dev-dsp-cwirc-problem-on-ubuntu/</guid>

					<description><![CDATA[<p>If you got problem with /dev/dsp for CWIRC on Ubuntu, try to launch X-Chat by typing padsp xchat on terminal. this is pulseaudio problem. Latest Ubuntu are using pulseaudio, not alsa.</p>
<p>The post <a href="https://hamradio.my/2011/03/dev-dsp-cwirc-problem-on-ubuntu/">/dev/dsp CWIRC Problem On Ubuntu</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[<p>If you got problem with /dev/dsp for CWIRC on Ubuntu, try to launch X-Chat by typing padsp xchat on terminal. this is pulseaudio problem. Latest Ubuntu are using pulseaudio, not alsa.</p>
<div style="clear: both; text-align: center;"><a href="https://lh6.googleusercontent.com/-DsF3CBN5bLo/TYq5_4RAz2I/AAAAAAAAAJE/Lc5C5P5sNnI/s1600/Screenshot-2.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="Screenshot-2 /dev/dsp CWIRC Problem On Ubuntu" loading="lazy" decoding="async" border="0" height="222" src="https://lh6.googleusercontent.com/-DsF3CBN5bLo/TYq5_4RAz2I/AAAAAAAAAJE/Lc5C5P5sNnI/s400/Screenshot-2.png" width="400" /></a></div>
<p>The post <a href="https://hamradio.my/2011/03/dev-dsp-cwirc-problem-on-ubuntu/">/dev/dsp CWIRC Problem On Ubuntu</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/2011/03/dev-dsp-cwirc-problem-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>APRSdroid – APRS for Android Smartphones</title>
		<link>https://hamradio.my/2010/10/aprsdroid-aprs-for-android-smartphones/</link>
					<comments>https://hamradio.my/2010/10/aprsdroid-aprs-for-android-smartphones/#comments</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sat, 30 Oct 2010 09:28:00 +0000</pubDate>
				<category><![CDATA[android]]></category>
		<category><![CDATA[APRS]]></category>
		<category><![CDATA[aprsdroid]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[smartphone]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/10/30/aprsdroid-aprs-for-android-smartphones/</guid>

					<description><![CDATA[<p>APRSdroid is an Android application for pushing your current GPS coordinates to the APRS Internet Service network without using any VHF transceiver. Get the latest APRSdroid here http://aprsdroid.org/get</p>
<p>The post <a href="https://hamradio.my/2010/10/aprsdroid-aprs-for-android-smartphones/">APRSdroid – APRS for Android Smartphones</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[<p>APRSdroid is an Android application for pushing your current GPS coordinates to the APRS Internet Service network without using any VHF transceiver.</p>
<div style="clear: both; text-align: center;"></div>
<div style="clear: both; text-align: center;"><a href="http://aprsdroid.org/download/screenshots/main.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="main APRSdroid – APRS for Android Smartphones" loading="lazy" decoding="async" border="0" height="320" src="http://aprsdroid.org/download/screenshots/main.png" width="213" /></a></div>
<p></p>
<div style="clear: both; text-align: center;"><a href="http://aprsdroid.org/download/screenshots/prefs1.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="prefs1 APRSdroid – APRS for Android Smartphones" loading="lazy" decoding="async" border="0" height="320" src="http://aprsdroid.org/download/screenshots/prefs1.png" width="213" /></a></div>
<p>Get the latest APRSdroid here <a href="http://aprsdroid.org/get">http://aprsdroid.org/get</a></p>
<p>The post <a href="https://hamradio.my/2010/10/aprsdroid-aprs-for-android-smartphones/">APRSdroid – APRS for Android Smartphones</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/2010/10/aprsdroid-aprs-for-android-smartphones/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu Linux for Ham Radio Operators</title>
		<link>https://hamradio.my/2010/10/ubuntu-linux-for-ham-radio-operators/</link>
					<comments>https://hamradio.my/2010/10/ubuntu-linux-for-ham-radio-operators/#comments</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 08 Oct 2010 23:19:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free operating system]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[rock solid]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-hams]]></category>
		<category><![CDATA[unix like]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/10/08/ubuntu-linux-for-ham-radio-operators/</guid>

					<description><![CDATA[<p>Bert Kolts, AB0VI kolts1@estesvalley.net This free operating system provides your PC with all of the usual features, including lots of ham radio applications. If you have wanted to upgrade your PC to a new operating system, but haven’t wanted to pay the high cost for some commercial packages, then you might want to consider the [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/10/ubuntu-linux-for-ham-radio-operators/">Ubuntu Linux for Ham Radio Operators</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[<p><span style="font-family: inherit; font-size: small;"></span></p>
<div style="clear: both; text-align: center;"></div>
<div style="clear: both; text-align: center;"></div>
<div style="clear: both; text-align: center;"></div>
<div style="font-family: inherit;"><span style="font-size: small;"><br />
</span></div>
<div style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_WyYNu39WkyA/TK-m0qG64mI/AAAAAAAAAGg/V7EAU_vyIkY/s1600/blackeubuntulogo.png" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="blackeubuntulogo Ubuntu Linux for Ham Radio Operators" loading="lazy" decoding="async" border="0" height="84" src="http://3.bp.blogspot.com/_WyYNu39WkyA/TK-m0qG64mI/AAAAAAAAAGg/V7EAU_vyIkY/s320/blackeubuntulogo.png" width="320" /></a></div>
<div style="font-family: inherit;"><span style="font-size: small;"><br />
</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">Bert Kolts, AB0VI</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><a href="mailto:kolts1@estesvalley.net">kolts1@estesvalley.net</a></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><em>This free operating system provides your PC with all of the usual features, including lots of ham radio applications.</em></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">If you have wanted to upgrade your PC to a new operating system, but  haven’t wanted to pay the high cost for some commercial packages, then  you might want to consider the world of open source software. Contrary  to popular belief, there are several options available for PC operating  systems.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">After a string of never ending system bugs and finally a hard drive  crash, I was finally prompted to look for an alternative operating  system for my PC. The hard drive was easily replaced, but I wanted an  operating system (OS) that wasn’t going to cost me hundreds of dollars,  that would be more robust and would support my ham radio operation.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">A suggestion from a friend and a little time spent surfing the Web quickly led me to the <i>Ubuntu</i>  Web site. It looked like a good option, but the most important question  in my mind was whether it would support any ham radio applications.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><strong>What is <i>Ubuntu</i>?</strong></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">Simply put, <i>Ubuntu</i> is a full-fledged operating system based on <i>Linux</i> (the PC version of <i>UNIX</i>) that has a similar look and feel to other popular OSs, such as Microsoft <i>Windows</i>. The <i>Ubuntu</i>  OS supports all of the usual PC functions but with software that is all  open sourced. This means that the operating system and all of the  programs that it includes are totally <i>free</i>. Over the last few years, <i>Ubuntu</i> has gained in popularity to the point where some PC vendors are now offering it as an option with some of their new products.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">In case you might be wondering about the name <i>Ubuntu</i>, it is a  concept that comes from several South African languages. It’s one of  those terms that does not translate well into English, but according to <i>The Official Ubuntu Book</i> it can be roughly translated as meaning “humanity toward others,” or “I am because we are.”</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">The <i>Ubuntu</i> desktop looks similar to those of other operating  systems. Figure 1 shows the desktop that I use for version 8.04 (also  referred to as Hardy Heron). You might notice that the desktop does not  have any individual program icons, but this is simply a matter of  personal preference, icons can be added if you wish. All of my programs  are listed under the <span><span>APPLICATIONS</span></span> menu,  located at the top left of the display, where I can organize them into  folders by program type. Also located in that corner of the display is  the <span><span>PLACES</span></span> menu, which contains such items as disc drives and networks, as well as folders for pictures, videos, music, etc. The <span><span>SYSTEMS</span></span> menu has user preferences and system administration menus.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">The <i>Ubuntu</i> OS uses <i>Firefox</i> as a Web browser and <i>Evolution</i> for e-mail. For office applications the <i>OpenOffice</i>  suite is provided, which supports a full featured word processor,  spreadsheets, presentations and more. The system also includes the usual  games, photo, video and music programs as well. Some of the video  programs will even support the European video formats. This is an  important feature if you have friends or relatives in Europe, as we do,  who like to send you home videos of the grandchildren.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">Hardware support is good too. I have two different PCs that interface  with a router, one via LAN and another wireless. Each has a different  printer as well. All of these devices, including the wireless USB  adapter, were identified during system installation and simply worked  with no problems. <i>Ubuntu</i> supports a wide range of both old and new hardware and peripherals. A list of the supported hardware can be found on the <i>Ubuntu</i></span> Web site.</div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">If you would like to give <i>Ubuntu</i> a trial run, you can go to  their Web site and download the OS, or order a free CD. You could also  choose to buy one of the books that provide an introduction to <i>Ubuntu</i>, many of which will also include a CD. Just be sure that the included CD is one of the recent <i>Ubuntu</i> releases. Version 10.04, Lucid Lynx, is the latest, as of this writing.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">When installing the OS, you will discover that you have several options. You can either run <i>Ubuntu</i>  directly from the CD, just to try it without installing it on your hard  drive, or you can create a dual boot configuration and have both <i>Ubuntu</i> and your old OS available. Of course you can also take the big jump and simply install <i>Ubuntu</i> as your only OS.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">With the OS up and running, software updates and support are likely to be the next concern. The <i>Ubuntu</i></span>  community, which consists of developers and users, provides periodic  software updates, documentation and user forums. These help to assure  that your system is kept up to date and that users have a resource for  questions and problems should they arise.</div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><strong>Ham Radio Applications</strong></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">At this point, since <i>Ubuntu</i> is beginning to look like a really  viable alternative OS, the next big issue is whether it will support  the ham radio applications that we want to run. Fortunately, the answer  to this question is <span>—</span> yes it will.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">One of the nice features of <i>Ubuntu</i> is the <i>Synaptic Package Manager</i>.  This system lets you search through thousands of programs for specific  types of applications and once found, download and install them onto  your PC. All of this is done in one simple operation. To help make life  easier, the programs within the <i>Package Manager</i> are categorized by type, such as games, mathematics, network and science. There is even a separate category for Amateur Radio.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">The ham radio applications include programs for Morse code training,  APRS and packet programs, rig control, CW and digital mode terminal  applications, satellite tracking, Smith Charts, logging, DX clusters and  more. In most cases there are multiple programs available for each of  these applications and there is also a logging program that interfaces  with LoTW.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">As an example, I use the program <i>Xlog</i>, shown in Figure 2, for  my log. This program not only provides basic contact logging, but it  also tracks your scoring for important awards and checks for previously  worked stations. In addition to this, <i>Xlog</i> can also read your  rig’s frequency, mode and power via the serial port. For contesters,  there is a CW keyer mode that allows you to program the function keys  with CW messages and, of course, it can also import and export log data  in several common formats.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">There are a number of programs available for <i>Ubuntu</i> that will support the various digital operating modes. One popular program for digital mode operation is <i>fldigi</i>.  This program, shown in Figure 3, supports several digital modes  including: CW, PSK, HELL, Olivia, RTTY and more. It also has the ability  to perform rig control, measure frequency (calibrated to WWV), log  contacts, run in contest mode and interface with <a href="http://www.qrz.com/" target="_blank" rel="noopener">QRZ.com</a>.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><strong><i>Wine</i> <span>—</span> It’s Not Just for Drinking</strong></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">But what happens if you can’t find a <i>Linux</i> application for the task you need and a <i>Windows</i> program is the only solution? Fortunately all is not lost, because there are several ways that you can run <i>Windows</i> based programs on <i>Ubuntu</i>. One of these ways is with <i>Wine</i>.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;"><i>Wine</i> is a software package that lets you run many <i>Windows</i> applications within the <i>Ubuntu</i> <i>Linux</i><i>Windows</i> folder “Program Files” that contains your <i>Windows</i> applications. When you run a <i>Windows</i> application in <i>Ubuntu</i> it will execute under <i>Wine</i>, but the display will look just like does when it executes from a <i>Windows</i> operating system.</span> environment. It creates a virtual C: drive on your hard disc and there you will find the familiar </div>
<div style="font-family: inherit;"><span style="font-size: small;">Figure 4 shows an example of the <i>Windows</i> program <i>CircuitMaker</i>, a circuit simulation program, running under <i>Wine</i>. <i>CircuitMaker</i> is an old program that is no longer supported, but in this case I needed this old <i>Windows</i> program to support some of my older homebrew projects. It runs as well now with <i>Ubuntu</i> and <i>Wine</i> as it did with my old <i>Windows</i> system.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">The much newer circuit simulation program, <i>LtspiceIV</i> from Linear Technologies, can be run with <i>Wine</i> as well. I downloaded the file a few days ago and it loads and runs on my PC with no problems whatsoever.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">Schematic capture and PCB layout applications are also necessary  tools for those of us who like to do homebrew projects. The PCB vendor  that I like to use for my PC boards provides free schematic and layout  software, but unfortunately their software is only available in <i>Windows</i> versions. (Will software vendors ever learn that there are some of us who prefer to operate in <i>Linux</i>? Sigh.) Once again, it only took me about a minute to download their software onto the <i>Wine</i> C: drive and install the programs. As expected, they ran perfectly with no problems.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">[Note that the <i>Wine</i> emulator works well for smaller  applications such as those described above, but it should not be  considered a replacement for a <i>Windows</i> OS. Most of the larger, more complex programs that run smoothly under <i>Windows</i> will run erratically <span>—</span> or not at all <span>—</span> in the <i>Wine</i> environment. <span>—</span> <i>Ed</i>.]</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><strong>The Bottom Line</strong></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">In today’s tight economy many of us are looking to get the most bang for our computer buck. <i>Ubuntu</i>, with all of its standard features and functionality, its large library of <i>Linux</i> based ham radio applications and its ability to run <i>Windows</i> applications if necessary, is certainly a viable option when considering an operating system upgrade. Best of all, since the <i>Ubuntu</i> system is open source software, this is all available for <i>free</i>, which makes <i>Ubuntu Linux</i> and ham radio a hard combination to beat. After 2 years of running <i>Ubuntu</i> on two of my home PCs, I find that the more I use it the more I like it, so give it a try.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><strong><span>More Information</span></strong></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">This article can’t even begin to describe all of the functions, features and applications available with <i>Ubuntu</i>, so for more information about <i>Ubuntu</i>, <i>Linux</i>, <i>Wine</i> or any of the other applications mentioned here, or to download software, try the following links: <i><a href="http://www.ubuntu.com/" target="_blank" rel="noopener">Ubuntu</a>, <a href="http://www.openoffice.org/" target="_blank" rel="noopener">OpenOffice</a>, <a href="http://www.mozilla.com/firefox" target="_blank" rel="noopener">FireFox</a>, <a href="http://projects.gnome.org/evolution" target="_blank" rel="noopener">Evolution</a>, <a href="http://www.winehq.org/" target="_blank" rel="noopener">Wine</a>, <a href="http://www.w1hkj.com/Fldigi.html" target="_blank" rel="noopener">fldigi</a>, <a href="http://www.nongnu.org/xlog" target="_blank" rel="noopener">Xlog</a>.</i></span></div>
<div style="font-family: inherit;"><span style="font-size: small;">The following two books are the ones that I keep next to my computer  and refer to most often. They provide a good introduction to <i>Ubuntu</i> for the novice user and they contain <i>Ubuntu</i> CDs.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;">• Hill, Burger, Jesse, &amp; Bacon; <i>The Official Ubuntu Book</i>; Prentice Hall, 2008.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>This is a good overview of <i>Ubuntu</i>, including its history.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;">• Grant, Rickford; <i>Ubuntu for Non-Geeks</i>; No Starch Press, 2008.</span></div>
<div style="font-family: inherit;"><span style="font-size: small;"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>This book provides a lot of good practical “how to” information for the <i>Ubuntu</i> beginner.</span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><em><br />
</em></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><em>Bert Kolts, AB0VI, an ARRL Life Member, was first licensed in  1960 (previously WA2VQB and WA0WZI) and now holds an Extra class  license. Bert is a retired electrical engineer who spent 37 years  working for Hewlett Packard and its spin-off Agilent Technologies. He is  currently refreshing his German via online courses, learning to program  in <span>Python</span> and of course hamming, where he works mostly CW  and PSK31. Bert has published numerous professional articles on test and  measurement and has also articles in <span>QEX</span> and <span>QST</span>. Bert can be reached at 253 Steamer Ct, Estes Park, CO 80517.</em></span></div>
<div style="font-family: inherit;">
</div>
<div style="font-family: inherit;"><span style="font-size: small;"><em>&nbsp;Source: <a href="http://www.arrl.org/ubuntu-linux-for-hams">http://www.arrl.org/ubuntu-linux-for-hams</a></em></span></div>
<div style="font-family: inherit;"><span style="font-size: small;"><em>&nbsp;</em></span></div>
<p>The post <a href="https://hamradio.my/2010/10/ubuntu-linux-for-ham-radio-operators/">Ubuntu Linux for Ham Radio Operators</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/2010/10/ubuntu-linux-for-ham-radio-operators/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Fedora Amateur Radio SIG Logo</title>
		<link>https://hamradio.my/2010/08/fedora-amateur-radio-sig-logo/</link>
					<comments>https://hamradio.my/2010/08/fedora-amateur-radio-sig-logo/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 16 Aug 2010 20:52:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[redhat]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/08/16/fedora-amateur-radio-sig-logo/</guid>

					<description><![CDATA[<p>Yes, i know that Fedora also got their own amateur radio special interest group. That is why i am requesting for Fedora amateur radio SIG logo. Thanks to the Fedora design team especially to Marcstewart. Here is my ticket https://fedorahosted.org/design-team/ticket/134</p>
<p>The post <a href="https://hamradio.my/2010/08/fedora-amateur-radio-sig-logo/">Fedora Amateur Radio SIG Logo</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[<p><a href="http://img.obfuscatepenguin.net/fedora/arsig-logo/arsig-01e.png"><img  title="" decoding="async" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 440px; height: 160px;" src="http://img.obfuscatepenguin.net/fedora/arsig-logo/arsig-01e.png"  alt="arsig-01e Fedora Amateur Radio SIG Logo"  border="0" /></a></p>
<p><a href="http://img.obfuscatepenguin.net/fedora/arsig-logo/arsig-02a.png"><img  title="" decoding="async" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 468px; height: 60px;" src="http://img.obfuscatepenguin.net/fedora/arsig-logo/arsig-02a.png"  alt="arsig-02a Fedora Amateur Radio SIG Logo"  border="0" /></a></p>
<p>Yes, i know that Fedora also got their own <a href="http://fedoraproject.org/wiki/SIGs/AmateurRadio">amateur radio special interest group</a>. That is why i am requesting for Fedora amateur radio SIG logo. Thanks to the <a href="http://www.blogger.com/design-team@lists.fedoraproject.org">Fedora design team</a> especially to <a href="https://fedoraproject.org/wiki/User:Marcstewart">Marcstewart</a>.</p>
<p>Here is my ticket <a href="https://fedorahosted.org/design-team/ticket/134">https://fedorahosted.org/design-team/ticket/134</a></p>
<p><span style="text-decoration: underline;"></span></p>
<p>The post <a href="https://hamradio.my/2010/08/fedora-amateur-radio-sig-logo/">Fedora Amateur Radio SIG Logo</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/2010/08/fedora-amateur-radio-sig-logo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu-hams Malaysia At KL Tower Hamfest 2010</title>
		<link>https://hamradio.my/2010/07/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/</link>
					<comments>https://hamradio.my/2010/07/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sat, 31 Jul 2010 11:04:00 +0000</pubDate>
				<category><![CDATA[9w2hdz]]></category>
		<category><![CDATA[9W2PJU]]></category>
		<category><![CDATA[9w2pyt]]></category>
		<category><![CDATA[9W2WTF]]></category>
		<category><![CDATA[booth]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[hamfest]]></category>
		<category><![CDATA[kl tower]]></category>
		<category><![CDATA[kuala lumpur]]></category>
		<category><![CDATA[malaysia]]></category>
		<category><![CDATA[mypapit]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-hams]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/07/31/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/</guid>

					<description><![CDATA[<p>Event: Hamfest 2010 http://www.hamfest.myDate: 30 July, 31 July and 1 Aug 2010Time: 10 am to 10 pmWho we are: Malaysian Ubuntu-hams ( Attendee: 9W2PJU, 9W2HDZ and SWL Tony )What we do here: Promoting Ubuntu to all Malaysia ham radio operator and giving free Ubuntu CDs to them.Pictures: See more photo here http://www.flickr.com/photos/9w2pju/sets/72157624490701603/ Credits: Thanks to [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/07/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/">Ubuntu-hams Malaysia At KL Tower Hamfest 2010</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[<p><a href="http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs109.ash2/38794_1549483299143_1296922994_1514301_250082_n.jpg"><br /></a><br /><a href="http://3.bp.blogspot.com/_WyYNu39WkyA/TFQFrqwawEI/AAAAAAAAAD0/TOG9LG6BPiI/s1600/hamfest2010.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://3.bp.blogspot.com/_WyYNu39WkyA/TFQFrqwawEI/AAAAAAAAAD0/TOG9LG6BPiI/s320/hamfest2010.jpg"  alt="hamfest2010 Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  id="BLOGGER_PHOTO_ID_5500027292696100930" border="0" /></a></p>
<p>Event: Hamfest 2010 <a href="http://www.hamfest.my/">http://www.hamfest.my</a><br />Date: 30 July, 31 July and 1 Aug 2010<br />Time: 10 am to 10 pm<br />Who we are:</p>
<p><a href="http://2.bp.blogspot.com/_QmenDvyMjlk/TEBBl0EAzpI/AAAAAAAACIM/azuwkniLPqQ/s400/ubuntu-malaysia-hams.png"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 400px; height: 121px;" src="http://2.bp.blogspot.com/_QmenDvyMjlk/TEBBl0EAzpI/AAAAAAAACIM/azuwkniLPqQ/s400/ubuntu-malaysia-hams.png"  alt="ubuntu-malaysia-hams Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  border="0" /></a></p>
<p>Malaysian Ubuntu-hams ( Attendee: 9W2PJU, 9W2HDZ and SWL Tony )<br />What we do here: Promoting Ubuntu to all Malaysia ham radio operator and giving free Ubuntu CDs to them.<br />Pictures:</p>
<p><a href="http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs109.ash2/38794_1549483299143_1296922994_1514301_250082_n.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 526px; height: 394px;" src="http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs109.ash2/38794_1549483299143_1296922994_1514301_250082_n.jpg"  alt="38794_1549483299143_1296922994_1514301_250082_n Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  border="0" /></a></p>
<p><a href="http://sphotos.ak.fbcdn.net/hphotos-ak-snc4/hs237.snc4/39180_453945342215_694982215_6309957_3878743_n.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 522px; height: 293px;" src="http://sphotos.ak.fbcdn.net/hphotos-ak-snc4/hs237.snc4/39180_453945342215_694982215_6309957_3878743_n.jpg"  alt="39180_453945342215_694982215_6309957_3878743_n Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  border="0" /></a></p>
<p><a href="http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs107.ash2/38701_453931877215_694982215_6309617_1000619_n.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 534px; height: 299px;" src="http://sphotos.ak.fbcdn.net/hphotos-ak-ash2/hs107.ash2/38701_453931877215_694982215_6309617_1000619_n.jpg"  alt="38701_453931877215_694982215_6309617_1000619_n Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  border="0" /></a></p>
<p><a href="http://sphotos.ak.fbcdn.net/hphotos-ak-snc4/hs191.snc4/37876_1549484259167_1296922994_1514310_6595203_n.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 532px; height: 398px;" src="http://sphotos.ak.fbcdn.net/hphotos-ak-snc4/hs191.snc4/37876_1549484259167_1296922994_1514310_6595203_n.jpg"  alt="37876_1549484259167_1296922994_1514310_6595203_n Ubuntu-hams Malaysia At KL Tower Hamfest 2010"  border="0" /></a><br />See more photo here <a href="http://www.flickr.com/photos/9w2pju/sets/72157624490701603/">http://www.flickr.com/photos/9w2pju/sets/72157624490701603/</a></p>
<p>Credits: Thanks to all <a href="https://wiki.ubuntu.com/UbuntuHams">Ubuntu-hams</a>, supporters, Malaysian hamradio operators, <a href="http://www.azlipaat.com/">9W2FYI</a> the event manager, <a href="http://artofapogee.blogspot.com/">Apogee</a> for the great logo, <a href="http://9m2ar.com/">9M2AR</a>, <a href="http://raulf.blogspot.com/">9W2PYT</a>, <a href="http://blog.e1.my/">9W2HDZ</a>, <a href="http://katiekitty.co.tv/">SWL Tony</a> for the picnic table, friends, foes, and big thanks To <a href="http://please.name.my/">mypapit 9W2WTF</a> for the non stop supports.</p>
<p>The post <a href="https://hamradio.my/2010/07/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/">Ubuntu-hams Malaysia At KL Tower Hamfest 2010</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/2010/07/ubuntu-hams-malaysia-at-kl-tower-hamfest-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Android On Your PC!</title>
		<link>https://hamradio.my/2010/07/android-on-your-pc/</link>
					<comments>https://hamradio.my/2010/07/android-on-your-pc/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Thu, 29 Jul 2010 20:19:00 +0000</pubDate>
				<category><![CDATA[android]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[x86]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/07/29/android-on-your-pc/</guid>

					<description><![CDATA[<p>Android is popular linux based operating system for most of smart phones and also tablet PCs. Some said that android based phones is an iPhone killer. Can we run an android on your x86 pc ? yes we can! Steps Get android x86 iso here at http://android-x86.googlecode.com/files/android-x86-1.6-r2.iso you need UNetbootin to make bootable USB drive [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/07/android-on-your-pc/">Android On Your PC!</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[<p>Android is popular linux based operating system for most of smart phones and also tablet PCs. Some said that android based phones is an iPhone killer. Can we run an android on your x86 pc ? yes we can!</p>
<p>Steps</p>
<ol>
<li>Get android x86 iso here at <a href="http://www.android-x86.org/download">http://android-x86.googlecode.com/files/android-x86-1.6-r2.iso</a></li>
<li>you need <a href="http://unetbootin.sourceforge.net/">UNetbootin</a> to make bootable USB drive or just burn the iso if you got cd/dvd drive ( you can also run this iso in your virtual environment, vmware, virtualpc, virtualbox )</li>
<li>reboot your pc to your USB drive or burned cd/dvd</li>
</ol>
<p>
Screensnap</p>
<div style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/_jC-7cWU_KkA/TFHu8MQGBrI/AAAAAAAAAbc/aZIDMqaGf0c/s1600/a1.JPG" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="a1 Android On Your PC!" loading="lazy" decoding="async" border="0" height="322" src="http://2.bp.blogspot.com/_jC-7cWU_KkA/TFHu8MQGBrI/AAAAAAAAAbc/aZIDMqaGf0c/s400/a1.JPG" width="400" /></a></div>
<p></p>
<div style="clear: both; text-align: center;"></div>
<p>The post <a href="https://hamradio.my/2010/07/android-on-your-pc/">Android On Your PC!</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/2010/07/android-on-your-pc/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Android SDK on Ubuntu</title>
		<link>https://hamradio.my/2010/07/android-sdk-on-ubuntu/</link>
					<comments>https://hamradio.my/2010/07/android-sdk-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 15:36:00 +0000</pubDate>
				<category><![CDATA[android]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/07/14/android-sdk-on-ubuntu/</guid>

					<description><![CDATA[<p>Trying Android SDK Emulator on my Ubuntu. Get it at http://developer.android.com/sdk/index.html</p>
<p>The post <a href="https://hamradio.my/2010/07/android-sdk-on-ubuntu/">Android SDK on Ubuntu</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[<div>Trying Android SDK Emulator on my Ubuntu.</div>
<div></p>
<div></div>
<div><img  title="" decoding="async" src="http://1.bp.blogspot.com/_WyYNu39WkyA/TD3b0qmXo_I/AAAAAAAAADE/Yep6txaucfw/s400/5554:android_006.png" style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 285px;" border="0"  alt="5554:android_006 Android SDK on Ubuntu"  id="BLOGGER_PHOTO_ID_5493788818296775666" /></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div>Get it at <a href="http://developer.android.com/sdk/index.html">http://developer.android.com/sdk/index.html</a></div>
<div></div>
<div></div>
<div></div>
</div>
<p>The post <a href="https://hamradio.my/2010/07/android-sdk-on-ubuntu/">Android SDK on Ubuntu</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/2010/07/android-sdk-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>2010 ARRL Field Day Running Ubuntu</title>
		<link>https://hamradio.my/2010/06/2010-arrl-field-day-running-ubuntu/</link>
					<comments>https://hamradio.my/2010/06/2010-arrl-field-day-running-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 13:58:00 +0000</pubDate>
				<category><![CDATA[hamradio]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-hams]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/06/30/2010-arrl-field-day-running-ubuntu/</guid>

					<description><![CDATA[<p>My friend from Ubuntu-hams,&#160; @joey_stanford posted a video showing ham radio operator using Ubuntu on 2010 ARRL Field Day. Watch the video here</p>
<p>The post <a href="https://hamradio.my/2010/06/2010-arrl-field-day-running-ubuntu/">2010 ARRL Field Day Running Ubuntu</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[<p>My friend from Ubuntu-hams,&nbsp; @<span><span><span>joey_stanford posted a video showing ham radio operator using Ubuntu on 2010 <a href="http://www.arrl.org/field-day">ARRL Field Day</a>.</span></span></span></p>
<div style="clear: both; text-align: center;"><a href="http://www.jtrg.org/Photoalbum/Logos/slides/ARRL%20logo%20lg.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="ARRL%20logo%20lg 2010 ARRL Field Day Running Ubuntu" loading="lazy" decoding="async" border="0" height="204" src="http://www.jtrg.org/Photoalbum/Logos/slides/ARRL%20logo%20lg.jpg" width="320" /></a></div>
<p><span><span><span>Watch the video <a href="http://qik.com/video/8267932">here</a></span></span></span></p>
<p>
<span><span><span><br />
</span></span></span><br />
<span><span><span><br />
</span></span></span></p>
<p>The post <a href="https://hamradio.my/2010/06/2010-arrl-field-day-running-ubuntu/">2010 ARRL Field Day Running Ubuntu</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/2010/06/2010-arrl-field-day-running-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hello Ubuntu Planet!</title>
		<link>https://hamradio.my/2010/06/hello-ubuntu-planet/</link>
					<comments>https://hamradio.my/2010/06/hello-ubuntu-planet/#comments</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 14:19:00 +0000</pubDate>
				<category><![CDATA[amateurradio]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[expertimental]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/06/23/hello-ubuntu-planet/</guid>

					<description><![CDATA[<p>&#160; Hello, i think this is the first Ubuntu-ham&#8217;s blog in the planet Ubuntu. Well, first of all i would like to thank to all ppl who are always supporting me especially to sconklin, joey, kamal, mypapit, ubuntu-my and also to all ubuntu-hams members. i&#8217;d like to share my interest about amateur radio or something [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/06/hello-ubuntu-planet/">Hello Ubuntu Planet!</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[<div style="text-align: center;">&nbsp;</div>
<p>Hello,</p>
<p>i think this is the first Ubuntu-ham&#8217;s blog in the planet Ubuntu. Well, first of all i would like to thank to all ppl who are always supporting me especially to <a href="https://launchpad.net/~sconklin">sconklin</a>, <a href="https://launchpad.net/~joey">joey</a>, <a href="https://launchpad.net/~kamalmostafa">kamal</a>, <a href="https://launchpad.net/~mypapit">mypapit</a>, ubuntu-my and also to all <a href="https://wiki.ubuntu.com/UbuntuHamsMembers">ubuntu-hams</a> members. i&#8217;d like to share my interest about amateur radio or something they called is as &#8220;ham radio&#8221; and Ubuntu as ham&#8217;s perfect shack operating system. Getting to know what is Ubuntu-hams all about ?</p>
<p>Please visit</p>
<ol>
<li><a href="https://launchpad.net/~ubuntu-hams">https://launchpad.net/~ubuntu-hams</a></li>
<li><a href="https://wiki.ubuntu.com/UbuntuHamsPackages">https://wiki.ubuntu.com/UbuntuHamsPackages</a></li>
<li><a href="http://en.wikipedia.org/wiki/Amateur_radio">http://en.wikipedia.org/wiki/Amateur_radio</a></li>
</ol>
<p>This is my first post to <a href="http://planet.ubuntu.com/">planet Ubuntu</a>. Till then a very 73 from me, <a href="http://www.qrz.com/db/9m2pju">9M2PJU</a>.</p>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;"><img  title=""  alt="UbuntuHams?action=AttachFile&amp;do=get&amp;target=ubuntu-hams-text_192 Hello Ubuntu Planet!" decoding="async" src="https://wiki.ubuntu.com/UbuntuHams?action=AttachFile&amp;do=get&amp;target=ubuntu-hams-text_192.png" border="0"></div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="clear: both; text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<div style="text-align: center;">&nbsp;</div>
<p>The post <a href="https://hamradio.my/2010/06/hello-ubuntu-planet/">Hello Ubuntu Planet!</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/2010/06/hello-ubuntu-planet/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu Global Jam At MOSC2010</title>
		<link>https://hamradio.my/2010/06/ubuntu-global-jam-at-mosc2010/</link>
					<comments>https://hamradio.my/2010/06/ubuntu-global-jam-at-mosc2010/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 22 Jun 2010 05:03:00 +0000</pubDate>
				<category><![CDATA[jam]]></category>
		<category><![CDATA[mosc2010]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/06/22/ubuntu-global-jam-at-mosc2010/</guid>

					<description><![CDATA[<p>To all Ubuntu fan. Dont forget to attend Global Jam Ubuntu during MSC Malaysia Open Source Conference (MSC MOSC2010) Date : 29 June 2010 Time 5.30pm till 8pm (After end of conference day 1) Place : Berjaya Time Square, Kuala Lumpur Malaysia. An Ubuntu Jam is a local event, where people meet to do something [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/06/ubuntu-global-jam-at-mosc2010/">Ubuntu Global Jam At MOSC2010</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[<p>To all Ubuntu fan. Dont forget to attend Global Jam Ubuntu during MSC Malaysia Open Source Conference (<a href="http://conf.oss.my/home.html">MSC MOSC2010</a>)</p>
<p>Date : 29 June 2010</p>
<p>Time 5.30pm till 8pm (After end of conference day 1)</p>
<p>Place : Berjaya Time Square, Kuala Lumpur Malaysia.</p>
<p>An Ubuntu Jam is a local event, where people meet to do something with Ubuntu. The point is to have fun, meet great people, learn something new and make Ubuntu better in a way that you like and enjoy.</p>
<p><a href="https://wiki.ubuntu.com/Jams">https://wiki.ubuntu.com/Jams</a></p>
<p>Its FREE and open to all.</p>
<p>The post <a href="https://hamradio.my/2010/06/ubuntu-global-jam-at-mosc2010/">Ubuntu Global Jam At MOSC2010</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/2010/06/ubuntu-global-jam-at-mosc2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
