1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
01. Building / Installation
---------------------------
To install/build nield:
tar xvzf nield-x.x.x.tar.gz
cd nield-x.x.x
./configure
make
make install
02. Startup Script
------------------
To install startup script:
CentOS, Redhat, Fedora:
cp -p contrib/redhat/nield /etc/init.d/
chkconfig --add nield
Ubuntu:
sudo cp -p contrib/ubuntu/nield /etc/init.d/
sudo sysrc-conf nield on
Gentoo:
cp -p contrib/gentoo/nield /etc/init.d/
rc-update add nield default
|