<?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>recovery - Hamradio.my</title>
	<atom:link href="https://hamradio.my/tag/recovery/feed/" rel="self" type="application/rss+xml" />
	<link></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>recovery - Hamradio.my</title>
	<link></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>
	</channel>
</rss>
