How to make the perfect TOR VM in VirtualBox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

install.sh 429B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. apt-get install \
  3. build-essential \
  4. linux-headers-amd64 \
  5. iptables-persistent \
  6. gdm3 \
  7. vlc \
  8. firefox-esr \
  9. transmission \
  10. enlightenment \
  11. redsocks \
  12. tor \
  13. rsync \
  14. unbound \
  15. mount /dev/cdrom /mnt && cd /mnt && ./VBoxLinuxAdditions.run
  16. cd -
  17. umount /mnt
  18. cd static && rsync -av . /
  19. echo net.ipv6.conf.all.disable_ipv6=1 >> /etc/sysctl.conf
  20. echo net.ipv6.conf.default.disable_ipv6=1 >> /etc/sysctl.conf