Install Base CentOS System
- Install CentOS using the CentOS6 (64 template)
- Use a downloaded iso for the CnetOS 7 from:
http://mirror.ox.ac.uk/sites/mirror.centos.org/7/isos/x86_64/CentOS-7-x86_64-Minimal-1503-01.iso - Proceed through the install process ensuring to process all the "spokes of the wheel" i.e. setup
Install Networking
CentOS doesn't enable setup by default so you need to do that:
- Find the network interface name: ip a
which will produce a result like:
2: etho: <BROADCAST,MULTI...
where 'eth0' is the name - Edit the corresponding config file:
vi /etc/sysconfig/network-scripts/ifcfg-eth0 - Paste in DHCP:
DEVICE=eth0
HWADDR=[MAC ADDRESS]
NM_CONTROLLED=yes
ONBOOT=yes
BOOTPROTO=dhcp
or for static address:
BOOTPROTO=static
IPADDR=192.168.1.10
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=8.8.8.8
DNS2=4.2.2.2 - Stop and start the service:
service network stop
service network start
Install NethServer
- Add the packages: yum localinstall -y http://mirror.nethserver.org/nethserver/7.1.1503/base/x86_64/Packages/nethserver-release-7-0.1.6.g3dbb849.ns7.noarch.rpm
- Install the base system:
nethserver-install - Access the web interface:
https://[IP address]:980
No comments:
Post a Comment