View Single Post
  #5 (permalink)  
Old 03-14-2007, 11:03 AM
Owenus Owenus is offline
New Member
 
Posts: 3
Question Also installing on etch

hi All
I'm trying to install zcs-4.5.3_GA_733.DEBIAN3.1 on debian etch

I do a clean basic install

next fix Ip address
next nano /etc/hosts

127.0.0.1 localhost.localdomain localhost
192.16.36.40 zcsserver.mydomain.home zcsserver

nano /etc/resolv.conf

search localdomain
nameserver 192.168.111.222

(all ipv6 is commented out)

apt-get install openssl libstdc++6 libxml2-dev sudo curl fetchmail libgmp3c2

copy zcs-4.5.3_GA_733.DEBIAN3.1.tar to my home directory

tar xvfz zcs-4.5.3_GA_733.DEBIAN3.1.tar

cd zcs/bin

nano get_plat_tag.sh

change

if [ -f /etc/debian_version ]; then
grep "3.1" /etc/debian_version > /dev/null 2>&1
if [ $? = 0 ]; then
echo "DEBIAN3.1"
exit 0

to

if [ -f /etc/debian_version ]; then
grep "4.0" /etc/debian_version > /dev/null 2>&1
if [ $? = 0 ]; then
echo "DEBIAN3.1"
exit 0

nano util/utilfunc.sh

Search for Debian3.1

Change line

PREREQ_PACKAGES="sudo libidn11 curl fetchmail libgmp3 libxml2 libstdc++6 openssl"

To

PREREQ_PACKAGES="sudo libidn11 curl fetchmail libgmp3c2 libxml2 libstdc++6 openssl"

next I run the install.sh

Yes to all installs, yes to system modification

Then I Get
Setting defaults...No results returned for A lookup of zcsserver.mydomain.home
Checked nameservers:
192.168.111.222


DNS ERROR resolving zcsserver.mydomain.home
It is suggested that the hostname be resolveable via DNS
Change hostname [Yes]


Can anyone describe the steps required to setup the DNS

Thanks Owenus
Reply With Quote