Difference between revisions of "InstallingAboutUsOnLinux/InstallDevTools"
Arshia Irfan (talk | contribs) (→Install Dev_Tools) |
m (→Install TCL: Missing directory which needed to be made) |
||
| Line 5: | 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 | curl -O http://expect.nist.gov/old/expect-5.43.0.tar.gz | ||
Revision as of 21:52, 21 January 2008
Back to InstallingAboutUsOnLinux
Install TCL
sudo apt-get install tcllib sudo apt-get install tcl8.4-dev mkdir /www/source cd /www/source curl -O 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
Install Dev_Tools
cd /www git clone nimbus:/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
