Last active
December 18, 2015 05:19
-
-
Save jnyryan/5731913 to your computer and use it in GitHub Desktop.
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 | |
| ################################################### | |
| # Install basics on raspberry pi | |
| # References | |
| # http://www.cyberciti.biz/faq/deiban-ubuntu-linux-networkmanager-pptp-cisco-vpn-tab-disabled/ | |
| ################################################### | |
| sudo -i | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y dist-upgrade | |
| apt-get -y install git | |
| apt-get -y install build-essential | |
| apt-get -y install openvpn | |
| apt-get -y install network-manager | |
| apt-get -y install network-manager-openvpn | |
| apt-get -y install network-manager-gnome | |
| apt-get -y install network-manager-pptp network-manager-vpnc | |
| apt-get -y install tightvncserver | |
| /etc/init.d/network-manager restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment