Created
January 26, 2013 11:45
-
-
Save mbernson/4641901 to your computer and use it in GitHub Desktop.
Raspberry Pi bootstrap
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
# Ask for the administrator password upfront | |
sudo -v | |
# Upgrade the system, install X and Alsa stuff | |
pacman -S \ | |
xorg xorg-server xorg-xinit xorg-server-utils xf86-video-fbdev \ | |
alsa-firmware alsa-lib alsa-plugins alsa-utils \ | |
vim git tmux mpd mpc ncmpc htop | |
# Enable the sound device | |
modprobe snd-bcm2835 | |
# Load the kernel module for sound at startup | |
echo "snd-bcm2835" >> /etc/modules-load.d/snd-bcm2835.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment