For this example, we'll assume you're currently in your home directory, which is where you downloaded the zip file to. First, create a subdirectory to hold the unzipped MSS for Tomcat files. It is good practice to include the version number in this directory name; if you do so, remember to correctly match it with the version of the MSS for Tomcat distribution you downloaded.
~]$ cd downloads
In downloads, create a subdirectory to hold the unzipped MSS for Tomcat files. It is good practice to include the version number in this directory name; if you do so, remember to correctly match it with the version of the MSS for Tomcat binary distribution you downloaded.
~]$ mkdir "mss-tomcat-<version>"
Move the downloaded zip file into the directory you have just created:
~]$ mv "mss-0.7.2-apache-tomcat-6.0.14-0901261255.zip" "mss-tomcat-<version>"
Move into that directory:
~]$ cd "mss-tomcat-<version>"
Finally, use Java's jar -xvf command to extract the contents of the zip file into the current directory, thus completing the install:
mss-tomcat-<version>]$ jar -xvf "mss-0.7.2-apache-tomcat-6.0.14-0901261255.zip"
Alternatively, if Linux's unzip utility is present on your system or is installable, you can use it in lieu of Java's jar -xvf command:
mss-tomcat-<version>]$ unzip "mss-0.7.2-apache-tomcat-6.0.14-0901261255.zip"
Note
You can also use unzip's -d<unzip_to_location> option to extract the zip file's contents to a location other than the current directory.
To free disk space, you may want to delete the zip file once you've extracted its contents:
mss-tomcat-<version>]$ rm "mss-0.7.2-apache-tomcat-6.0.14-0901261255.zip"