yum命令,以及为eclipse安装php插件
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 search perl //在包名称、包描述等中搜索
# 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 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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
