Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
YawgNetWiki
Search
Search
Appearance
Log in
Personal tools
Not logged in
Talk
Contributions
Log in
Editing
RPi Essentials
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=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 following: lsblk dd bs=4M if=image.img of=/dev/sdX conv=fsync First command is used to identify the appropriate output filesystem =Backup= Again, use Win32DI on Windows or the following on Linux sudo dd bs=4M if=/dev/sdb of=raspbian.img And to restore on Linux sudo dd bs=4M if=raspbian.img of=/dev/sdb =WiFi Setup= The easiest method is to use the raspi-config script included in Raspbian sudo raspi-config ==Alternative== We can modify the wpa-supplicant file to include our networks. sudo nano /etc/wpa_supplicant/wpa_supplicant.conf ===With Password=== Add the following to the above config file: <pre> network={ ssid="testing" psk="testingPassword" }</pre> You can also use wpa_passphrase to generate an encrypted PSK: wpa_passphrase "SSID" You can then use the output without quotes in the above PSK slot in the config file ===Without Password=== <pre> network={ ssid="testing" key_mgmt=NONE }</pre> ===Multiple Networks=== Simply add both networks to the wpa_supplicant config file, however if you need to prioritize one over the other, use the priority flag: <pre> network={ ssid="HomeOneSSID" psk="passwordOne" priority=1 id_str="homeOne" } network={ ssid="HomeTwoSSID" psk="passwordTwo" priority=2 id_str="homeTwo" }</pre> =Config.txt= Under /boot/config.txt a couple of key configs to remember: For the HDMI port on a media center you do typically want it on all the time, even if the TV is off: hdmi_force_hotplug=1 hdmi_group=1 hdmi_mode=16 hdmi_drive=2 =References= * [https://www.raspberrypi.org/documentation/installation/installing-images/linux.md RPi Install Docs] * [https://www.raspberrypi.org/documentation/linux/filesystem/backup.md RPi Backup Docs] * [https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md RPi Wifi Docs] [[Category:RaspberryPi]]
Summary:
Please note that all contributions to YawgNetWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
YawgNetWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
RPi Essentials
Add topic