Home>Article>php教程> yum命令,以及为eclipse安装php插件

yum命令,以及为eclipse安装php插件

WBOY
WBOY Original
2016-06-06 19:52:40 1394browse

yum是一个用于管理rpm包的后台程序,由python写成,可以非常方便的解决rpm的依赖关系, #yum list 列出资源库中特定的可以安装或更新以及已经安装的rpm包 # yum lsit perl* 列出perl开头的包 # yum list updates 列出所有可更新的rpm包 # yum list installed

yum是一个用于管理rpm包的后台程序,由python写成,可以非常方便的解决rpm的依赖关系,
# yum list 列出资源库中特定的可以安装或更新以及已经安装的rpm包
# yum lsit perl* 列出perl开头的包
# yum list updates 列出所有可更新的rpm包
# yum list installed 列出已经安装的所有的rpm包
# yum info perl* 列出资源库中perl开头的所有包的信息
# yum info updates 列出所有可更新的rpm信息
# yum info installed 列出已经安装的所有rpm包的信息
# yum info extras 列出所有已经安装但是不包含在资源库的rpm包信息

#yum searchperl //在包名称、包描述等中搜索
# yum provides realplay //搜索包含特定文件名的rpm包

安装rpm包
#yum install perl* //安装perl开头的所有包
删除rpm包,包括与该包有依赖性的包
# yum remove perl* //会删除perl-*所有包

更新
检查可更新的rpm包
# yum check -update
更新所有的rpm包
# yum update
更新指定的rpm包,与更新kernel和kernel source
# yum update kernel kernel-source

大版本的版本升级,与yum update不同的是,连旧的淘汰的包也升级
#yum upgrade

清空缓存
# yum clean packages 清除暂存中rpm包文件
# yum clean headers 清除暂存中rpm头文件
# yum clean oldheader 清除暂存中旧的rpm头文件
#yum clean all清楚暂存中旧的rpm头文件和包文件

============================================================

"工欲善其事,必先利其器"。 命令行vi虽然很酷,但当要同时打开的文件一多就抓瞎,特别不利于项目管理。

yum -y install eclipse 安装eclipse
whereis eclipse
eclipse: /usr/share/eclipse
如果出现上面的东东说明安装成功了。
但在运行eclipse时可能出现的报错: An error has occurred. See the log file....
运行:rpm -V icu4j-eclipse
如果出现下面的错误,需要重装icu4j,

missing /usr/lib/eclipse/features/com.ibm.icu_4.2.1.v20100412 missing /usr/lib/eclipse/features/com.ibm.icu_4.2.1.v20100412/feature.xml missing /usr/lib/eclipse/plugins/com.ibm.icu.source_4.2.1.v20100412.jar missing /usr/lib/eclipse/plugins/com.ibm.icu_4.2.1.v20100412.jar
yum -remove icu4j-eclipse 选择y,比较悲催的是elicpse关联都会被删,之前都白下半天了,所以建议先运行 yum install icu4j 。
再运行yum install eclipse,这样之后可运行eclipse。

为eclise安装pdt(php插件)
Help-->Install New Software --> Add --> Location:
http://download.eclipse.org/technology/dltk/updates-dev/4.0-stable/
Help-->Install New Software --> Add --> Location:
http://download.eclipse.org/tools/pdt/updates/release

http://phpeclipse.sourceforge.update/stable/1.2.x
http://update.phpeclipse.net/update/stable/1.2.x

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn