Difference between revisions of "InstallingAboutUsOnLinux/InstallDevTools"

m (Install Dev_Tools)
(Install Dev_Tools)
 

(7 intermediate revisions by 4 users not shown)



Line 1: Line 1:
 +
Back to [[InstallingAboutUsOnLinux]]
 
===Install TCL===
 
===Install TCL===
 
<pre>
 
<pre>
Line 4: Line 5:
 
sudo apt-get install tcl8.4-dev
 
sudo apt-get install tcl8.4-dev
  
 +
mkdir /www/source
 
cd /www/source
 
cd /www/source
curl -O http://expect.nist.gov/old/expect-5.43.0.tar.gz
+
wget http://expect.nist.gov/old/expect-5.43.0.tar.gz
 
tar zxvf expect-5.43.0.tar.gz
 
tar zxvf expect-5.43.0.tar.gz
 
cd expect-5.43
 
cd expect-5.43
Line 12: Line 14:
 
make install
 
make install
  
 +
# on CentOS - /configure --prefix=/www --with-tcl=/usr/lib/tcl8.4 --with-tclinclude=/usr/include/tcl-private/
 
</pre>
 
</pre>
  
Line 17: Line 20:
 
<pre>
 
<pre>
 
cd /www
 
cd /www
git clone user@nimbus.aboutus.com:/opt/git/dev_tools
+
git clone nimbus:/opt/git/dev_tools
 +
# or /www/bin/git clone [<email>c292d24851d40b6731f9e5db49758f5d</email>:/opt/git/dev_tools
 
cd /www/bin/
 
cd /www/bin/
 
for i in /www/dev_tools/* ; do ln -s $i . ; done
 
for i in /www/dev_tools/* ; do ln -s $i . ; done

Latest revision as of 02:32, 2 December 2008

Back to InstallingAboutUsOnLinux

Install TCL

sudo apt-get install tcllib
sudo apt-get install tcl8.4-dev

mkdir /www/source
cd /www/source
wget http://expect.nist.gov/old/expect-5.43.0.tar.gz
tar zxvf expect-5.43.0.tar.gz
cd expect-5.43
./configure --prefix=/www --with-tcl=/usr/lib/tcl8.4 --with-tclinclude=/usr/include/tcl8.4/tcl-private/generic
make
make install

# on CentOS - /configure --prefix=/www --with-tcl=/usr/lib/tcl8.4 --with-tclinclude=/usr/include/tcl-private/

Install Dev_Tools

cd /www
git clone nimbus:/opt/git/dev_tools
# or /www/bin/git clone [<email>c292d24851d40b6731f9e5db49758f5d</email>:/opt/git/dev_tools
cd /www/bin/
for i in /www/dev_tools/* ; do ln -s $i . ; done

Uninstall Dev_Tools

cd /www/dev_tools
for i in *; do rm /www/bin/$i; done
cd ..
rm -rf dev_tools


Retrieved from "http://aboutus.com/index.php?title=InstallingAboutUsOnLinux/InstallDevTools&oldid=17087744"