Table of Contents

Setting up a new Linux box

This page goes through the various settings that take place to setup a new Ubuntu box. In this case I was setting Ubuntu 12.04 Precise Pangolin.

Install Configuration / Steps

System Configuration

DNS Server Configuration

Currently ubv48 is setup as DNS server using dnsmasq.
Update /etc/resolv.conf file as below:

nameserver 192.168.1.48
nameserver 192.168.1.49
nameserver 192.168.1.1
nameserver 8.8.8.8
options timeout:1
options attempts:1

Update /etc/network/interfaces file as below:

iface enp0s3 inet static
        address 192.168.1.47
        netmask 255.255.255.0
        network 192.168.1.0
        gateway 192.168.1.1
        broadcast 192.168.1.255
        dns-nameservers 192.168.1.48
        dns-nameservers 192.168.1.1
        dns-nameservers 8.8.8.8

More items

Other Items configuration