PhantomJS 在linux上使用
Posted 亲爱的阿道君
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PhantomJS 在linux上使用相关的知识,希望对你有一定的参考价值。
安装
1. 下载
wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
2. 解压
tar -xvf phantomjs-1.9.7-linux-x86_64.tar.bz2
如果提示 tar (child): bzip2:无法 exec: 没有那个文件或目录, 需要运行 yum -y install bzip2 安装bzip2
3. 将可执行文件放入系统路径
sudo ln -s /home/test/bin/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
4. 安装依赖——fontconfig和freetype
yum install fontconfig freetype2
5. 解决中文乱码
yum -y install bitmap-fonts bitmap-fonts-cjk
字体粗细不一致
这是centos不存在字体的原因,可以导入字体。
- 安装字体管理工具: yum install -y fontconfig mkfontscale
- 访问 c:\\windows\\fonts,把需要的字体copy出来。然后上传到服务器上的 /usr/share/fonts下
- 执行 mkfontscale mkfontdir fc-cache -fv三个命令,然后重启服务器(reboot)即可。
参考网站:
https://www.cnblogs.com/10-22/articles/4383196.html
http://www.jb51.net/article/126285.htm
https://www.cnblogs.com/weiweiyao/p/4330471.html
https://www.cnblogs.com/front-Thinking/p/4321720.html
https://www.cnblogs.com/ginponson/p/6659167.html
https://www.cnblogs.com/imxiu/p/6023930.html
http://www.zuimoban.com/jiaocheng/javascript/3855.html
http://blog.csdn.net/yx0628/article/details/78275714 (phantomJS利用cookie实现自动登录)
http://javascript.ruanyifeng.com/tool/phantomjs.html phantomJS标准参考教程
以上是关于PhantomJS 在linux上使用的主要内容,如果未能解决你的问题,请参考以下文章
[Python爬虫] 在Windows下安装PhantomJS和CasperJS及入门介绍(上)