Skip to content

Instantly share code, notes, and snippets.

@inlanger
Created November 11, 2013 17:57
Show Gist options
  • Save inlanger/7417377 to your computer and use it in GitHub Desktop.
Save inlanger/7417377 to your computer and use it in GitHub Desktop.
Minimal raspbian sudo minimal.sh
#!/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