1
0
mirror of https://github.com/moparisthebest/pi-hole synced 2024-08-13 16:53:51 -04:00

fixing dns

This commit is contained in:
jacobsalmela 2014-12-20 13:10:58 -06:00
parent ebeb25d4ae
commit 55ebc0e492

View File

@ -4,7 +4,7 @@
# #
# Install with this command (from the Pi): # Install with this command (from the Pi):
# #
# curl -s "" | bash # curl -s "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/automated%20install/basic-install.sh" | bash
# #
# Or run the commands below in order # Or run the commands below in order
@ -22,8 +22,7 @@ echo " Automated install "
echo " --Basic-- " echo " --Basic-- "
echo " " echo " "
echo " " echo " "
echo " Press enter to continue..." sleep 2
read userReady
# Update the Pi # Update the Pi
sudo apt-get update sudo apt-get update
@ -31,38 +30,29 @@ sudo apt-get -y upgrade
# Install DNS # Install DNS
sudo apt-get -y install dnsutils dnsmasq sudo apt-get -y install dnsutils dnsmasq
sudo service dnsmasq stop
# Install lighttpd Web server # Install lighttpd Web server
sudo apt-get -y install lighttpd sudo apt-get -y install lighttpd
sudo chown www-data:www-data /var/www sudo chown www-data:www-data /var/www
sudo chmod 775 /var/www sudo chmod 775 /var/www
sudo usermod -a -G www-data pi sudo usermod -a -G www-data pi
# Install minidlna
#sudo apt-get -y install minidlna
# Stop services before modifying settings
sudo service dnsmasq stop
sudo service lighttpd stop sudo service lighttpd stop
#sudo service minidlna stop
# Backup original config files and download new ones # Backup original config files and download new ones
#sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo mv /etc/lighttpd/lighttpd.conf /etc/lighttpd/lighttpd.conf.orig sudo mv /etc/lighttpd/lighttpd.conf /etc/lighttpd/lighttpd.conf.orig
sudo mv /var/www/index.lighttpd.html /var/www/index.lighttpd.orig sudo mv /var/www/index.lighttpd.html /var/www/index.lighttpd.orig
sudo curl -o /etc/dnsmasq.conf.pihole "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/dnsmasq.conf" sudo curl -o /etc/dnsmasq.conf "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/dnsmasq.conf"
sudo curl -o /etc/lighttpd/lighttpd.conf "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/lighttpd.conf" sudo curl -o /etc/lighttpd/lighttpd.conf "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/lighttpd.conf"
sudo mkdir /var/www/pihole sudo mkdir /var/www/pihole
sudo curl -o /var/www/pihole/index.html "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/index.html" sudo curl -o /var/www/pihole/index.html "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/index.html"
sudo curl -o /tmp/piholedns.sh "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/enable-dns.sh" # Download the ad list
sudo chmod 755 /tmp/piholedns.sh sudo curl -o /usr/local/bin/gravity.sh "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/advanced/gravity.sh"
sudo curl -o /usr/local/bin/gravity.sh "https://raw.githubusercontent.com/jacobsalmela/pi-hole/master/gravity.sh"
sudo chmod 755 /usr/local/bin/gravity.sh sudo chmod 755 /usr/local/bin/gravity.sh
sudo /usr/local/bin/gravity.sh sudo /usr/local/bin/gravity.sh
# Open your Pi-hole # Open your Pi-hole
sudo service dnsmasq start
sudo service lighttpd start sudo service lighttpd start
#sudo service minidlna start
sudo /tmp/piholedns.sh