PhantomJS和CasperJS我需要将哪些文件放在我的cpanel上

时间:2014-01-28 18:40:45

标签: php ubuntu phantomjs cpanel casperjs

好的,所以我终于构建了一个可以在我的ubuntu机器上运行的test.js文件。

我只是想知道如何在我的cpanel上添加phantomjs和casperjs,有什么方法可以说它们都能在cpanel上运行一次吗?

1 个答案:

答案 0 :(得分:2)

如果您有权限,可以从cPanel帐户进行SSH / Shell访问。请联系您的主机提供商以确定。

以下命令可以复制并粘贴到SSH中以安装依赖项,PhantomJS和CasperJs。家属使用docker.io测试:

apt-get install -y libfreetype6 libfontconfig libreadline-dev wget tar bzip2 vim git  
mkdir -p /srv/var  
cd /srv/var

PhantomJS:

wget http://phantomjs.googlecode.com/files/phantomjs-1.9.2-linux-x86_64.tar.bz2  
tar -xjf phantomjs-1.9.2-linux-x86_64.tar.bz2  
ln -s `pwd`/phantomjs-1.9.2-linux-x86_64/bin/phantomjs /usr/bin/  
phantomjs -v  

CasperJS:

git clone https://github.com/n1k0/casperjs.git  
ln -s `pwd`/casperjs/bin/casperjs /usr/bin/  
casperjs --version 

如果它们有效,您可以键入phantomjs -v或caspjer --version来验证安装。