<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://yawg.net/index.php?action=history&amp;feed=atom&amp;title=RPi_Essentials</id>
	<title>RPi Essentials - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://yawg.net/index.php?action=history&amp;feed=atom&amp;title=RPi_Essentials"/>
	<link rel="alternate" type="text/html" href="https://yawg.net/index.php?title=RPi_Essentials&amp;action=history"/>
	<updated>2026-07-21T19:22:51Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://yawg.net/index.php?title=RPi_Essentials&amp;diff=41&amp;oldid=prev</id>
		<title>Encryptid: Created page with &quot;=Download= * [https://www.offensive-security.com/kali-linux-arm-images/ Kali ARM Images] * [https://www.raspberrypi.org/downloads/raspbian/ Raspbian Images] * [https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3 Arch Linux ARM Images] * [https://osmc.tv/download/ OSMC Images] * [https://manjaro.org/download/#raspberry-pi-4 Manjaro]  =Format= Use [https://sourceforge.net/projects/win32diskimager/ Win32 Disk Imager] on Windows   For Linux you can use the follo...&quot;</title>
		<link rel="alternate" type="text/html" href="https://yawg.net/index.php?title=RPi_Essentials&amp;diff=41&amp;oldid=prev"/>
		<updated>2025-08-06T19:06:26Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;=Download= * [https://www.offensive-security.com/kali-linux-arm-images/ Kali ARM Images] * [https://www.raspberrypi.org/downloads/raspbian/ Raspbian Images] * [https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3 Arch Linux ARM Images] * [https://osmc.tv/download/ OSMC Images] * [https://manjaro.org/download/#raspberry-pi-4 Manjaro]  =Format= Use [https://sourceforge.net/projects/win32diskimager/ Win32 Disk Imager] on Windows   For Linux you can use the follo...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=Download=&lt;br /&gt;
* [https://www.offensive-security.com/kali-linux-arm-images/ Kali ARM Images]&lt;br /&gt;
* [https://www.raspberrypi.org/downloads/raspbian/ Raspbian Images]&lt;br /&gt;
* [https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3 Arch Linux ARM Images]&lt;br /&gt;
* [https://osmc.tv/download/ OSMC Images]&lt;br /&gt;
* [https://manjaro.org/download/#raspberry-pi-4 Manjaro]&lt;br /&gt;
&lt;br /&gt;
=Format=&lt;br /&gt;
Use [https://sourceforge.net/projects/win32diskimager/ Win32 Disk Imager] on Windows &lt;br /&gt;
&lt;br /&gt;
For Linux you can use the following:&lt;br /&gt;
    lsblk &lt;br /&gt;
    dd bs=4M if=image.img of=/dev/sdX conv=fsync&lt;br /&gt;
First command is used to identify the appropriate output filesystem&lt;br /&gt;
&lt;br /&gt;
=Backup=&lt;br /&gt;
Again, use Win32DI on Windows or the following on Linux&lt;br /&gt;
    sudo dd bs=4M if=/dev/sdb of=raspbian.img&lt;br /&gt;
And to restore on Linux&lt;br /&gt;
    sudo dd bs=4M if=raspbian.img of=/dev/sdb&lt;br /&gt;
&lt;br /&gt;
=WiFi Setup=&lt;br /&gt;
The easiest method is to use the raspi-config script included in Raspbian&lt;br /&gt;
    sudo raspi-config&lt;br /&gt;
&lt;br /&gt;
==Alternative==&lt;br /&gt;
We can modify the wpa-supplicant file to include our networks.&lt;br /&gt;
    sudo nano /etc/wpa_supplicant/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
===With Password===&lt;br /&gt;
Add the following to the above config file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network={&lt;br /&gt;
    ssid=&amp;quot;testing&amp;quot;&lt;br /&gt;
    psk=&amp;quot;testingPassword&amp;quot;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use wpa_passphrase to generate an encrypted PSK:&lt;br /&gt;
    wpa_passphrase &amp;quot;SSID&amp;quot; &lt;br /&gt;
You can then use the output without quotes in the above PSK slot in the config file&lt;br /&gt;
&lt;br /&gt;
===Without Password===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network={&lt;br /&gt;
    ssid=&amp;quot;testing&amp;quot;&lt;br /&gt;
    key_mgmt=NONE&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Multiple Networks===&lt;br /&gt;
Simply add both networks to the wpa_supplicant config file, however if you need to prioritize one over the other, use the priority flag:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network={&lt;br /&gt;
    ssid=&amp;quot;HomeOneSSID&amp;quot;&lt;br /&gt;
    psk=&amp;quot;passwordOne&amp;quot;&lt;br /&gt;
    priority=1&lt;br /&gt;
    id_str=&amp;quot;homeOne&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
network={&lt;br /&gt;
    ssid=&amp;quot;HomeTwoSSID&amp;quot;&lt;br /&gt;
    psk=&amp;quot;passwordTwo&amp;quot;&lt;br /&gt;
    priority=2&lt;br /&gt;
    id_str=&amp;quot;homeTwo&amp;quot;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Config.txt=&lt;br /&gt;
Under /boot/config.txt a couple of key configs to remember:&lt;br /&gt;
&lt;br /&gt;
For the HDMI port on a media center you do typically want it on all the time, even if the TV is off:&lt;br /&gt;
    hdmi_force_hotplug=1&lt;br /&gt;
    hdmi_group=1&lt;br /&gt;
    hdmi_mode=16&lt;br /&gt;
    hdmi_drive=2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
* [https://www.raspberrypi.org/documentation/installation/installing-images/linux.md RPi Install Docs]&lt;br /&gt;
* [https://www.raspberrypi.org/documentation/linux/filesystem/backup.md RPi Backup Docs]&lt;br /&gt;
* [https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md RPi Wifi Docs]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:RaspberryPi]]&lt;/div&gt;</summary>
		<author><name>Encryptid</name></author>
	</entry>
</feed>