INSTALLING MAGENTO 1.8.1.0 VIA SSH
Get the latest version of Magento
wget http://www.magentocommerce.com/downloads/assets/1.8.1.0/magento-1.8.1.0.tar.gz
Unpack the downloaded package
tar -zxvf magento-1.8.1.0.tar.gz
When you unpack Magento it will be contained within a folder called /magento the following command will move the contents of that directory to your current directory
mv magento/* magento/.htaccess .
Now adjust the permissions on the var and media directories
chmod -R o+w media var
The same applies to the app/etc directories
chmod o+w app/etc
To reduce the space taken up by Magento you can delete the download of magento 1.8.1.0 as this is no longer needed.
rm -rf magento/ magento-1.8.1.0.tar.gz
1 Comment
Recommended Comments