| #!/bin/sh | #!/bin/sh | ||||
| echo "Installing required packages" | echo "Installing required packages" | ||||
| for i in `apt-get --assume-yes install \ | |||||
| apt-get --assume-yes install \ | |||||
| build-essential \ | build-essential \ | ||||
| linux-headers-amd64 \ | linux-headers-amd64 \ | ||||
| iptables-persistent \ | iptables-persistent \ | ||||
| tor \ | tor \ | ||||
| rsync \ | rsync \ | ||||
| unbound \ | unbound \ | ||||
| vim-tiny` | |||||
| do | |||||
| echo -n . | |||||
| done | |||||
| echo " Done" | |||||
| vim-tiny | |||||
| echo "Removing unused packages" | echo "Removing unused packages" | ||||
| for i in `apt-get --assume-yes remove --purge nano`; do echo -n "."; done | |||||
| echo " Done" | |||||
| apt-get --assume-yes remove --purge nano | |||||
| echo "Mounting VirtualBox VM guest additions CD..." | echo "Mounting VirtualBox VM guest additions CD..." |