Setup a DIY Retro Gaming device with all of your favorite games

Using a Raspberry Pi, create a Retro Gaming device that can connect to a TV or computer monitor (HDMI or RCA).
Equipment needed:
*Raspberry Pi 3 B+ or Raspberry Pi 4 with Power Adapter
*Micro SD Card & Reader
*PC to setup the SD Card
*USB Keyboard
*HDMI Cable or 3.5MM Video AV Component Adapter

Advertisement

Install Brave Browser in Debian-based system like Ubuntu

How Does Brave Browser on Windows Compare?

Brave is a great privacy-focused browser with built-in (optional) crypto functionality. It blocks trackers and ads without an extension and it’s the only browser I know of that blocks Youtube ads. Very useful!

There’s only an X86 version as of now, so it will not work with Raspberry Pi yet. I am running it on my work iphone and my de-googled android.

sudo apt install apt-transport-https curl gnupg

curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -

echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list

sudo apt update

sudo apt install brave-browser

Migrate from Windows to Ubuntu with 3 lines in a terminal

You can obviously tailor this list to your needs, but with this post you can install at once these programs in a Debian-based distribution (x86 or Raspberry Pi!):
FTP, audio editor/streamer/player/tagger, office suite, radio streamer, remote desktop client, video editor, web browser, social media, disc utility, bit torrent client, email client, virtual machine, photo editor, CAD, CD burner, comic/ebook reader

sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade

sudo apt install filezilla audacity vlc rhythmbox thunderbird lynx mc krita libreoffice brasero gparted picard freecad transmission remmina obs-studio kid3-qt sound-juicer snapd p7zip-full p7zip-rar

Raspberry Pi has an ARM processor, so a few of these programs are unavailable. OBS Studio can be installed with this guide. Use this command instead:
sudo apt install filezilla audacity vlc rhythmbox thunderbird lynx mc libreoffice brasero gparted picard freecad transmission remmina kid3-qt sound-juicer snapd p7zip-full

(Reboot before you install anything with 'snap'):
sudo snap install freac foliate telegram-desktop

At the end of the page is an explanation of which programs do what.
Note: Every program on this list works on almost any Debian-based Raspberry Pi distribution, including Kali, Ubuntu Mate, Ubuntu Desktop, Raspberry PI OS

Raspberry Pi only: Tip for games and tweaks
There’s a CLI program called pi-kiss that can install multiple games, emulators, system configurations, tweaks, tools, scripts, etc.

curl -sSL https://git.io/JfAPE | bash

Launch the program:
cd /root/piKiss
./piKiss.sh

Continue reading “Migrate from Windows to Ubuntu with 3 lines in a terminal”