Last active
January 15, 2023 16:00
-
-
Save dinandmentink/565e5832cb24f34ee13931185393b4b4 to your computer and use it in GitHub Desktop.
Raspbian remove bloatware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run using
sudo curl -fsSL https://gist.github.com/dinandmentink/565e5832cb24f34ee13931185393b4b4/raw/60b4163e33e148003a1d8ad455ab2d3172bfa131/remove_bloatware.sh | bash