Month: January 2016

Network Installation on Linux using NFS

The following package must be installed tftp , tftp server dhcp nfs Configure Dhcp Install dhcp,copy /usr/share/doc/dhcp-xxxx/dhcpd.conf.sample to /etc/dhcp/dhcpd.conf cp -r /usr/share/doc/dhcp-xxxx/dhcpd.conf.sample /etc/dhcp/dhcpd.conf vi dhcpd.conf option domain-name “your domain name”; option domain-name-servers YOUR-SERVER ; default-lease-time 600; max-lease-time 7200; allow bootp; allow booting; ignore client-updates; ddns-update-style none; not authoritative; log-facility local7; subnet YOUR-NETWORK netmask 255.255.255.0 { […]

Continue Reading