Created
November 11, 2013 17:57
-
-
Save inlanger/7417377 to your computer and use it in GitHub Desktop.
Minimal raspbian
sudo minimal.sh
This file contains hidden or 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 | |
# Stephen's Raspberry Pi Mimimalist install from standard Raspdian Image | |
apt-get update | |
apt-get purge xserver* -y | |
apt-get purge ^x11 -y | |
apt-get purge ^libx -y | |
apt-get purge ^lx -y | |
apt-get purge samba* -y | |
apt-get autoremove -y | |
apt-get upgrade -y | |
apt-get clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment