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 | |
# as seen in http://www.raspberrypi.org/phpBB3/viewtopic.php?f=24&t=45437 | |
sudo apt-get update | |
sudo apt-get purge xserver* -y | |
sudo apt-get purge ^x11 -y | |
sudo apt-get purge ^libx -y | |
sudo apt-get purge ^lx -y | |
sudo apt-get purge samba* -y | |
sudo apt-get autoremove -y |