<?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>custom rom - Hamradio.my</title>
	<atom:link href="https://hamradio.my/tag/custom-rom/feed/" rel="self" type="application/rss+xml" />
	<link>https://hamradio.my/tag/custom-rom/</link>
	<description>Amateur Radio, Tech Insights and Product Reviews</description>
	<lastBuildDate>Fri, 16 May 2025 18:25:14 +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>custom rom - Hamradio.my</title>
	<link>https://hamradio.my/tag/custom-rom/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Essential ADB and Fastboot Commands Every Android Power User Should Know</title>
		<link>https://hamradio.my/2025/05/essential-adb-and-fastboot-commands-every-android-power-user-should-know/</link>
					<comments>https://hamradio.my/2025/05/essential-adb-and-fastboot-commands-every-android-power-user-should-know/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 16 May 2025 18:25:10 +0000</pubDate>
				<category><![CDATA[android]]></category>
		<category><![CDATA[custom rom]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[android tips]]></category>
		<category><![CDATA[fastboot]]></category>
		<category><![CDATA[flashing]]></category>
		<category><![CDATA[hamradio.my]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[rooting]]></category>
		<category><![CDATA[twrp]]></category>
		<category><![CDATA[unlock bootloader]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=7378</guid>

					<description><![CDATA[<p>If you like tweaking, modifying, or recovering Android devices, ADB (Android Debug Bridge) and Fastboot are your best friends. These powerful tools allow you to control your device via USB from a PC. Here&#8217;s a complete guide to the most useful ADB and Fastboot commands. 🛠 What You Need 📱 Useful ADB Commands 🔌 1. [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2025/05/essential-adb-and-fastboot-commands-every-android-power-user-should-know/">Essential ADB and Fastboot Commands Every Android Power User Should Know</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>



<h1 class="wp-block-heading" id="h-"></h1>



<p class="wp-block-paragraph">If you like tweaking, modifying, or recovering Android devices, <strong>ADB (Android Debug Bridge)</strong> and <strong>Fastboot</strong> are your best friends. These powerful tools allow you to control your device via USB from a PC. Here&#8217;s a complete guide to the most useful ADB and Fastboot commands.</p>



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



<h2 class="wp-block-heading" id="h-what-you-need"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f6e0.png" alt="🛠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> What You Need</h2>



<ul class="wp-block-list">
<li><strong>ADB &amp; Fastboot tools</strong> installed (via <a href="https://developer.android.com/studio/releases/platform-tools">Android SDK Platform Tools</a>)</li>



<li>USB drivers (for your phone model)</li>



<li>USB debugging enabled (Settings > Developer Options)</li>
</ul>



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



<h2 class="wp-block-heading" id="h-useful-adb-commands"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f1.png" alt="📱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Useful ADB Commands</h2>



<h3 class="wp-block-heading" id="h-1-connect-amp-detect-devices"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f50c.png" alt="🔌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 1. Connect &amp; Detect Devices</h3>



<pre class="wp-block-code"><code>adb devices
</code></pre>



<p class="wp-block-paragraph">Shows a list of connected devices.</p>



<h3 class="wp-block-heading" id="h-2-reboot-device"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f501.png" alt="🔁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 2. Reboot Device</h3>



<pre class="wp-block-code"><code>adb reboot
adb reboot bootloader
adb reboot recovery
</code></pre>



<h3 class="wp-block-heading" id="h-3-file-transfers"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c2.png" alt="📂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 3. File Transfers</h3>



<pre class="wp-block-code"><code>adb push &lt;local&gt; &lt;remote&gt;
adb pull &lt;remote&gt; &lt;local&gt;
</code></pre>



<p class="wp-block-paragraph">Example:</p>



<pre class="wp-block-code"><code>adb push update.zip /sdcard/
</code></pre>



<h3 class="wp-block-heading" id="h-4-take-screenshot"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f8.png" alt="📸" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 4. Take Screenshot</h3>



<pre class="wp-block-code"><code>adb shell screencap -p /sdcard/screen.png
adb pull /sdcard/screen.png
</code></pre>



<h3 class="wp-block-heading" id="h-5-open-adb-shell"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f41a.png" alt="🐚" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 5. Open ADB Shell</h3>



<pre class="wp-block-code"><code>adb shell
</code></pre>



<h3 class="wp-block-heading" id="h-6-install-or-uninstall-apks"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cb.png" alt="📋" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 6. Install or Uninstall APKs</h3>



<pre class="wp-block-code"><code>adb install app.apk
adb uninstall com.example.app
</code></pre>



<h3 class="wp-block-heading" id="h-7-logcat-for-debugging"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f50d.png" alt="🔍" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 7. Logcat for Debugging</h3>



<pre class="wp-block-code"><code>adb logcat
</code></pre>



<h3 class="wp-block-heading" id="h-8-backup-or-restore"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e6.png" alt="📦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 8. Backup or Restore</h3>



<pre class="wp-block-code"><code>adb backup -apk -shared -all -f backup.ab
adb restore backup.ab
</code></pre>



<h3 class="wp-block-heading" id="h-9-sideload-zip-in-recovery"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f504.png" alt="🔄" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 9. Sideload ZIP in Recovery</h3>



<pre class="wp-block-code"><code>adb sideload update.zip
</code></pre>



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



<h2 class="wp-block-heading" id="h-useful-fastboot-commands"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2699.png" alt="⚙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Useful Fastboot Commands</h2>



<h3 class="wp-block-heading" id="h-1-check-device"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5a5.png" alt="🖥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 1. Check Device</h3>



<pre class="wp-block-code"><code>fastboot devices
</code></pre>



<h3 class="wp-block-heading" id="h-2-reboot-from-fastboot"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 2. Reboot from Fastboot</h3>



<pre class="wp-block-code"><code>fastboot reboot
fastboot reboot recovery
</code></pre>



<h3 class="wp-block-heading" id="h-3-flash-boot-recovery-system-images"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f8.png" alt="📸" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 3. Flash Boot/Recovery/System Images</h3>



<pre class="wp-block-code"><code>fastboot flash boot boot.img
fastboot flash recovery recovery.img
fastboot flash system system.img
</code></pre>



<h3 class="wp-block-heading" id="h-4-wipe-partitions"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9f9.png" alt="🧹" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 4. Wipe Partitions</h3>



<pre class="wp-block-code"><code>fastboot erase userdata
fastboot erase cache
fastboot format system
</code></pre>



<h3 class="wp-block-heading" id="h-5-unlock-lock-bootloader"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9f1.png" alt="🧱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 5. Unlock/Lock Bootloader</h3>



<pre class="wp-block-code"><code>fastboot oem unlock
fastboot flashing unlock
fastboot flashing lock
</code></pre>



<p class="wp-block-paragraph"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a0.png" alt="⚠" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <em>Unlocking wipes your data.</em></p>



<h3 class="wp-block-heading" id="h-6-manage-a-b-slots"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f501.png" alt="🔁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 6. Manage A/B Slots</h3>



<pre class="wp-block-code"><code>fastboot getvar current-slot
fastboot set_active a
fastboot set_active b
</code></pre>



<h3 class="wp-block-heading" id="h-7-flashing-factory-images-example"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4e6.png" alt="📦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> 7. Flashing Factory Images (Example)</h3>



<pre class="wp-block-code"><code>fastboot flash bootloader bootloader.img
fastboot flash radio radio.img
fastboot flash boot boot.img
fastboot flash system system.img
fastboot flash vendor vendor.img
fastboot flash recovery recovery.img
</code></pre>



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



<h2 class="wp-block-heading" id="h-extra-tips"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cc.png" alt="📌" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Extra Tips</h2>



<ul class="wp-block-list">
<li>To reboot into <strong>fastboot</strong>: <code>adb reboot bootloader</code></li>



<li>To reboot into <strong>recovery</strong>: <code>adb reboot recovery</code></li>



<li>To check partition info: <code>fastboot getvar all</code></li>
</ul>



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



<h2 class="wp-block-heading" id="h-final-thoughts"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f914.png" alt="🤔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Final Thoughts</h2>



<p class="wp-block-paragraph">ADB and Fastboot are indispensable tools for Android enthusiasts, especially when installing custom ROMs, recovering bricked phones, or just debugging. Make sure you understand what each command does — a wrong command could wipe your data or brick your device.</p>



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



<p class="wp-block-paragraph">If you found this post helpful, stay tuned for more Android and ham radio tech content here at <strong>hamradio.my</strong>!</p>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph"></p>
<p>The post <a href="https://hamradio.my/2025/05/essential-adb-and-fastboot-commands-every-android-power-user-should-know/">Essential ADB and Fastboot Commands Every Android Power User Should Know</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2025/05/essential-adb-and-fastboot-commands-every-android-power-user-should-know/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exploring the Vibrant Culture of Android Custom ROMs: A Journey through History, Community, and Innovation</title>
		<link>https://hamradio.my/2024/05/exploring-the-vibrant-culture-of-android-custom-roms-a-journey-through-history-community-and-innovation/</link>
					<comments>https://hamradio.my/2024/05/exploring-the-vibrant-culture-of-android-custom-roms-a-journey-through-history-community-and-innovation/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 15 May 2024 14:27:13 +0000</pubDate>
				<category><![CDATA[android]]></category>
		<category><![CDATA[custom poi]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[third party]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[arrow os]]></category>
		<category><![CDATA[custom rom]]></category>
		<category><![CDATA[cynogenmod]]></category>
		<category><![CDATA[lineageos]]></category>
		<category><![CDATA[pixel experience]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=2779</guid>

					<description><![CDATA[<p>In the ever-evolving world of Android, custom ROMs stand out as a testament to the community&#8217;s ingenuity and passion for personalization. These alternative operating system distributions have a rich history, evolving from humble beginnings to becoming a cornerstone of Android enthusiast culture. Let&#8217;s embark on a journey through the past, present, and thriving community surrounding [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2024/05/exploring-the-vibrant-culture-of-android-custom-roms-a-journey-through-history-community-and-innovation/">Exploring the Vibrant Culture of Android Custom ROMs: A Journey through History, Community, and Innovation</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">In the ever-evolving world of Android, custom ROMs stand out as a testament to the community&#8217;s ingenuity and passion for personalization. These alternative operating system distributions have a rich history, evolving from humble beginnings to becoming a cornerstone of Android enthusiast culture. Let&#8217;s embark on a journey through the past, present, and thriving community surrounding Android custom ROMs.</p>



<p class="wp-block-paragraph">Custom ROMs emerged in the early days of Android as a response to the limitations imposed by manufacturers and carriers. Android&#8217;s open-source nature allowed developers to tinker with the code, leading to the creation of custom firmware tailored to specific devices. In the early 2010s, ROMs like CyanogenMod gained popularity for offering enhanced performance, additional features, and the latest Android updates to devices that were often left behind by manufacturers.</p>



<p class="wp-block-paragraph">As the community grew, so did the diversity of ROMs. Projects like Paranoid Android, MIUI, and LineageOS (the successor to CyanogenMod) emerged, each with its unique features and design philosophies. Custom ROM development became a playground for innovation, with developers experimenting with everything from performance tweaks to entirely new user interfaces.</p>



<p class="wp-block-paragraph">Today, the custom ROM scene remains vibrant, catering to a diverse range of users seeking to push the boundaries of their Android devices. While mainstream manufacturers continue to dominate the market, custom ROMs offer an alternative for users who crave more control over their user experience.</p>



<p class="wp-block-paragraph">One of the driving forces behind the popularity of custom ROMs is their ability to breathe new life into older devices. Devices that have reached the end of their official support lifecycle can often continue to receive updates and feature enhancements through custom ROMs, extending their usability for years beyond what manufacturers intended.</p>



<p class="wp-block-paragraph">At the heart of the custom ROM culture lies a passionate and tightly-knit community of developers, testers, and enthusiasts. Online forums, such as XDA Developers, serve as hubs for collaboration and knowledge sharing, where developers exchange ideas, troubleshoot issues, and distribute their creations to eager users.</p>



<p class="wp-block-paragraph">The collaborative nature of the community fosters innovation and ensures that even niche devices receive attention from developers. It&#8217;s not uncommon to find custom ROMs available for obscure devices that mainstream manufacturers have long forgotten.</p>



<p class="wp-block-paragraph">While the custom ROM scene encompasses a vast array of devices and projects, certain devices and ROMs have garnered particular attention and acclaim from enthusiasts.</p>



<p class="wp-block-paragraph">Some of the top devices for custom ROM enthusiasts include Google&#8217;s Pixel lineup, OnePlus devices, and various offerings from Xiaomi, Samsung, and Asus. These devices often boast strong developer support, making them ideal candidates for those looking to dive into the world of custom ROMs.</p>



<p class="wp-block-paragraph">As for custom ROMs themselves, LineageOS remains one of the most popular and widely supported projects, offering a clean and near-stock Android experience across a broad range of devices. Other notable ROMs include Paranoid Android for its innovative features, Resurrection Remix for its customization options, and Pixel Experience for its focus on delivering the Pixel&#8217;s software experience to non-Google devices.</p>



<p class="wp-block-paragraph">The culture of Android custom ROMs is a testament to the power of community-driven innovation. What began as a grassroots movement to liberate Android devices from the constraints of manufacturers has evolved into a thriving ecosystem of creativity and exploration. As long as there are passionate developers and users seeking to push the boundaries of what&#8217;s possible with their Android devices, the custom ROM culture will continue to thrive, driving innovation and personalization in the Android ecosystem.</p>
<p>The post <a href="https://hamradio.my/2024/05/exploring-the-vibrant-culture-of-android-custom-roms-a-journey-through-history-community-and-innovation/">Exploring the Vibrant Culture of Android Custom ROMs: A Journey through History, Community, and Innovation</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/05/exploring-the-vibrant-culture-of-android-custom-roms-a-journey-through-history-community-and-innovation/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
