How to make the perfect TOR VM in VirtualBox
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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