Complete the following steps to expand the tarball:
- Move the file os_allcommerce.1.0.4.tar.gz to the directory that your Web Server uses for served data. If you have Apache installed, the Apache default directory should be /home/httpd.
- Untar Zelerate AllCommerce by entering:
tar -zxvf os_allcommerce.1.0.4.tar.gz
- Now check the directory ownership:
ls -ld os_allcommerce
In the case of a default Apache installation, you should see something like:
drwxr-xr-x 15 nobody nobody {size} {mm dd time} os_allcommerce
- If the directory is not owned by nobody.nobody, enter:
chown -R nobody.nobody os_allcommerce
- Use ls to verify that the change in ownership took effect.
In general, you will want all files and directories to be owned by the account under which the Web server will be run (typically, this is nobody).
- If you wish to conserve disk space, you may now remove the tarball by entering:
rm os_allcommerce.1.0.4.tar.gz
|