From fe0197f039b7fb1d8abb87d0d9981c5be6deda66 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Fri, 25 Dec 2015 17:51:16 -0500 Subject: [PATCH] Updated docs for ArchLinux --- docs/dnsmasq.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/dnsmasq.md b/docs/dnsmasq.md index 6c045b3..cbe46fc 100644 --- a/docs/dnsmasq.md +++ b/docs/dnsmasq.md @@ -4,10 +4,18 @@ # Installation +## Raspbian + ``` sudo apt-get install dnsmasq ``` +## Arch Linux ARM + +``` +sudo pacman -S dnsmasq +``` + Use the config file on this repository to make it work and change the options as you need. You will probably want to change: @@ -21,6 +29,8 @@ options as you need. You will probably want to change: ## Files needed +### Raspbian + * [/etc/dnsmasq.conf](https://github.com/humitos/pyfispot/blob/master/raspberrypi/etc/dnsmasq.conf) You will also need to start the service at startup (boot): @@ -28,3 +38,11 @@ You will also need to start the service at startup (boot): ``` sudo update-rc.d dnsmasq enable ``` + +### Arch Linux ARM + +* [/etc/dnsmasq.conf](https://github.com/humitos/pyfispot/blob/master/archlinuxarm/etc/dnsmasq.conf) + +``` +sudo systemctl enable dnsmasq +```