Last active
March 7, 2016 04:33
-
-
Save triple-j/e5b194a515d9cdfa6b59 to your computer and use it in GitHub Desktop.
Misc RaspPI fixes
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/sh | |
sudo apt-get update | |
# reset ping's capabilities | |
sudo apt-get install --reinstall --yes iputils-ping | |
# missing programs | |
sudo apt-get install --yes rsync screen screenie caca-utils lynx sshfs | |
# install fish and set as main shell | |
sudo apt-get install --yes fish | |
chsh -s $(which fish) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment