Skip to content

Instantly share code, notes, and snippets.

@dinandmentink
Last active January 15, 2023 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dinandmentink/565e5832cb24f34ee13931185393b4b4 to your computer and use it in GitHub Desktop.
Save dinandmentink/565e5832cb24f34ee13931185393b4b4 to your computer and use it in GitHub Desktop.
Raspbian remove bloatware
#!/bin/bash
# First version taken from https://github.com/raspberrycoulis/remove-bloat
# Update
sudo apt-get update
# Remove default raspbian bloatware
sudo apt-get remove --purge \
dillo \
gpicview \
idle3 \
java-common \
libreoffice* \
openjdk-7-jre \
scratch* \
smartsim \
sonic-pi \
vlc* \
wolfram-engine \
-y
# Autoremove
sudo apt-get autoremove -y
# Clean
sudo apt-get clean -y
sudo apt-get autoclean -y
@dinandmentink
Copy link
Author

dinandmentink commented Nov 18, 2022

Run using

sudo curl -fsSL https://gist.github.com/dinandmentink/565e5832cb24f34ee13931185393b4b4/raw/60b4163e33e148003a1d8ad455ab2d3172bfa131/remove_bloatware.sh | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment