Skip to content

Instantly share code, notes, and snippets.

@peteristhegreat
Last active June 30, 2020 20:15
Show Gist options
  • Save peteristhegreat/adf312ca1611a391bc742dd954d258ef to your computer and use it in GitHub Desktop.
Save peteristhegreat/adf312ca1611a391bc742dd954d258ef to your computer and use it in GitHub Desktop.
RPI Retropie Raspbian RaspberryPi for kids, quickstart
  • Change localization, timezone, keyboard layout
  • Change password
  • Enable ssh
  • Add some lines to the .bashrc file
export HISTCONTROL=ignoredups:erasedups  # no duplicate entries
export HISTSIZE=100000                   # big big history
export HISTFILESIZE=100000               # big big history
shopt -s histappend                      # append to history, don't overwrite it

# Save and reload the history after each command finishes
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"

https://unix.stackexchange.com/a/48113/112190

  • Install pixel desktop from raspi-config
  • Change autostart to desktop
sudo apt install libreoffice
sudo apt install gnome-clocks
sudo apt install xcowsay
sudo apt install okular xpdf qpdfview
sudo apt install games-console
sudo apt install ninja-ide
sudo apt install ttf-dejavu
sudo apt install ktuberling
sudo apt install childsplay
sudo apt install leafpad gnuchess gnugo 
sudo apt install cups
sudo apt install vim tree most tldr
sudo apt install python3-pip

or

sudo apt install -y libreoffice gnome-clocks xcowsay okular xpdf qpdfview games-console ninja-ide ttf-dejavu ktuberling childsplay leafpad gnuchess gnugo cups vim tree most python3-pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment