博主辛苦了,我要打赏银两给博主,犒劳犒劳站长。
【摘要】本文记录一下如何在 CentOS 6.3 系统中安装 PhantomJS,一款基于 WebKit 无头浏览器,并给出在安装过程中遇到的一些坑。
首先一定要查看当前系统是 32 位还是 64位,查看当前系统的位数的命令是:
[root@localhost ~]# getconf LONG_BIT
32
这样我们就要下载对应位数的 PhantomJS,下载地址是:
http://phantomjs.org/download.html
我在这里就入坑了,我也没有多想位数在安装过程中是有不同的,位数不同安装结果不同。我的系统是 32 位,然而我下载的是 64 位的 PhantomJS,导致安装失败。
下载好了对应的软件,然后下面是安装过程:
# 安装依赖软件
[root@localhost html]# yum -y install wget fontconfig
# 解压
[root@localhost html]# tar xf phantomjs-2.1.1-linux-i686.tar.bz2
# 重命名
[root@localhost html]# mv phantomjs-2.1.1-linux-i686 phantomjs
# 建立软链接
[root@localhost html]# ln -s /var/www/html/phantomjs/bin/phantomjs /usr/bin/
如果给出如下提示,则安装成功:
[root@localhost html]# phantomjs
phantomjs: /lib/libz.so.1: no version information available (required by phantomjs)
phantomjs>
TIP:若 32 位系统执行 64 位通常会给出报错提示是:cannot execute binary file。例如:
版权归 马富天PHP博客 所有
本文标题:《在 CentOS 6.3 下安装 PhantomJS》
本文链接地址:http://www.mafutian.net/351.html
转载请务必注明出处,小生将不胜感激,谢谢! 喜欢本文或觉得本文对您有帮助,请分享给您的朋友 ^_^
顶0
踩0
第 1 楼 喜马拉雅白鳄鱼 2018-01-04 14:08:57 广东广州
评论审核未开启 |