...
Establish a SSH connection to the Linux machine or log in on the text Linux console. You should either log in as root or obtain root permissions after login via su
or sudo
command.
Step 1. Download Apache Ant
Code Block |
---|
wget http://www.apache.org/dist/ant/binaries/apache-ant-1.8.2-bin.tar.gz |
Image RemovedImage Added
Code Block |
---|
gunzip -c apache-ant-1.8.2-bin.tar.gz |tar xvf - |
Image RemovedImage Added
Step 3. Set Environmental Variables
Add the following lines to BASHRC file:
Code Block |
---|
export ANT_HOME=/opt/apache-ant-1.8.2
export PATH=${ANT_HOME}/bin:${PATH} |
Image RemovedImage Added
Step 4. Check Installation
Image RemovedImage Added
Excerpt |
---|
|
Instructions to install Apache Ant on Solaris. |
...