Difference between revisions of "InstallingAboutUsOnLinux/InstallDevTools"
Arif Iqbal (talk | contribs) (New page: <pre> sudo apt-get install tcllib 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 make make in...) |
Arif Iqbal (talk | contribs) |
||
| Line 8: | Line 8: | ||
make | make | ||
make install | make install | ||
| + | |||
| + | cd /www | ||
| + | git clone nimbus.aboutus.com:/opt/git/dev_tools | ||
| + | cd /www/bin/ | ||
| + | for i in /www/dev_tools/* ; do ln -s $i . ; done | ||
</pre> | </pre> | ||
| + | |||
| + | ===Uninstall Dev_Tools=== | ||
| + | cd /www/dev_tools | ||
| + | for i in *; do rm /www/bin/$i; done | ||
| + | cd .. | ||
| + | rm -rf dev_tools | ||
Revision as of 05:25, 8 January 2008
sudo apt-get install tcllib 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 make make install cd /www git clone nimbus.aboutus.com:/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
