乔姆拉!ssh上的安装/升级过程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了乔姆拉!ssh上的安装/升级过程相关的知识,希望对你有一定的参考价值。
First, find the proper package from http://www.joomla.org/download/ and copy its path. Then, over ssh, navigate to the root of the joomla install and perform these commands. In the case of an upgrade, this will overwrite in place the needed files, and in the case of an install, will unpack the package directly in the folder it was uploaded to. Much faster than unzipping locally and ftping.
// grab package straight from joomla and upload to server wget http://path/to/joomla/upgrade/or/install/package-file-name.bz2 //unpack in place tar xjvf package-file-name.bz2 // alternate command for non-gnutar (not-linux) systems and gz files // gunzip < package-file-name.gz | tar xvf - //clean up by removing package after unpacking rm package-file-name.bz2
以上是关于乔姆拉!ssh上的安装/升级过程的主要内容,如果未能解决你的问题,请参考以下文章