Skip to content

Instantly share code, notes, and snippets.

@Eyjafjallajokull
Forked from rdmarsh/pi-tips.md
Last active August 10, 2020 18:25
Show Gist options
  • Save Eyjafjallajokull/32f84b36373b9483e9358d28b8fac338 to your computer and use it in GitHub Desktop.
Save Eyjafjallajokull/32f84b36373b9483e9358d28b8fac338 to your computer and use it in GitHub Desktop.
Clean up the Raspbian default build for the Raspberry Pi

Minimal Headless Raspberry Pi OS

After burning SD card, touch ssh on boot partition to enable ssh.

Default ssh credentials: pi : raspberry

Remove redundant stuff:

apt-get purge --auto-remove scratch debian-reference-en dillo idle3 python3-tk idle python-pygame python-tk lightdm gnome-themes-standard gnome-icon-theme raspberrypi-artwork gvfs-backends gvfs-fuse desktop-base lxpolkit zenity xdg-utils mupdf gtk2-engines alsa-utils  lxde lxtask menu-xdg gksu midori xserver-xorg xinit xserver-xorg-video-fbdev libraspberrypi-dev libraspberrypi-doc dbus-x11 libx11-6 libx11-data libx11-xcb1 x11-common x11-utils lxde-icon-theme gconf-service gconf2-common

Warning: this will probably break something. If you need sound, don't remove the "alsa" packages

sudo apt-get --yes purge xserver-common x11-xfs-utils x11-xserver-utils xinit libsmbclient blt gvfs gvfs-backends gvfs-daemons gvfs-fuse idle idle-python2.7  idle3 libaudio2 libice6 liblightdm-gobject-1-0 libpulse0 libqt4-svg libqtgui4 libsdl-image1.2 libsdl-mixer1.2 libsdl-ttf2.0-0 libsdl1.2debian libsm6 libsmpeg0 libwebkitgtk-1.0-0 libwebkitgtk-3.0-0 libxaw7 libxklavier16 libxmu6 libxss1 libxt6 libxtst6 lightdm lightdm-gtk-greeter lxde lxde-core midori nano obconf openbox python-pygame python-tk python3-tk  scratch tk8.5 wpagui x11-common x11-utils x11-xkb-utils xinit xserver-common xserver-xorg xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev xserver-xorg-input-synaptics xserver-xorg-video-fbdev zenity xserver* x11-common x11-utils x11-xkb-utils x11-xserver-utils xarchiver xauth xkb-data console-setup xinit lightdm libx{composite,cb,cursor,damage,dmcp,ext,font,ft,i,inerama,kbfile,klavier,mu,pm,randr,render,res,t,xf86}* lxde* lx{input,menu-data,panel,polkit,randr,session,session-edit,shortcut,task,terminal} obconf openbox gtk* libgtk* alsa* nano python-pygame python-tk python3-tk scratch tsconf desktop-file-utils cifs-utils samba-common smbclient

sudo apt-get --yes purge bluez
sudo systemctl disable wpa_supplicant

If you don't want GPIO

sudo apt-get purge python-rpi.gpio

Clean out any remaining stuff

sudo apt-get --yes autoremove
sudo apt-get --yes autoclean
sudo apt-get --yes clean

remove unneeded directories

apt-get purge might delete these for you:

sudo rm -r /usr/lib/xorg/modules/linux /usr/lib/xorg/modules/extensions /usr/lib/xorg/modules /usr/lib/xorg
rm -r ~/Desktop
rm -r ~/python_games

do an update/upgrade:

sudo apt-get --yes update
sudo apt-get --yes upgrade

Regen ssh keys

It's a good idea to regenerate the ssh keys rather than use the ones on the image.

sudo rm /etc/ssh/ssh_host_* && sudo dpkg-reconfigure openssh-server

You may need to clear out the old keys in .ssh/know_hosts on the client:

ssh-keygen -R [IP]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment