12345678910111213141516171819202122232425 |
- #!/bin/sh
-
- apt-get install \
- build-essential \
- linux-headers-amd64 \
- iptables-persistent \
- gdm3 \
- vlc \
- firefox-esr \
- transmission \
- enlightenment \
- redsocks \
- tor \
- rsync \
- unbound \
-
-
- mount /dev/cdrom /mnt && cd /mnt && ./VBoxLinuxAdditions.run
- cd -
- umount /mnt
-
- cd static && rsync -av . /
-
- echo net.ipv6.conf.all.disable_ipv6=1 >> /etc/sysctl.conf
- echo net.ipv6.conf.default.disable_ipv6=1 >> /etc/sysctl.conf
|