linux_Yum source warehouse installation tutorial!

1. Source code compilation

Advantages of using source code to install software:

获得最新的软件版本,及时修复bug
根据用户需要,灵活定制软件功能

Examples of applications

安装较新版本的应用程序时
当前安装的程序无法满足需要时
需要为应用程序添加新的功能时

Tarball packet

.tar.gz和.tar.bz2格式居多
软件素材参考: http://sourceforge.net

Integrity check

omd5sum校验工具
[root@localhost ~]# md5sum httpd-2.4.25.tar.gz
24fb8b9e36cf131d78caae864fea0f6a httpd-2.4.25.tar.gz
注:httpd-2.4.25.tar.gz前面的就是MD5校验和

Confirm the source code compilation environment

需安装支持C/C++程序语言的编译器如:gcc、gcc-c++、make、…

The basic process of compiling and installing

Download the source code installation package file
1. tar unpack
Purpose: Unzip and release the source code package to the specified directory
tar zxvf /jxvf xxx.tar.g2 /xxx.tar.bz2 -c
2. ./configure configuration software module
Purpose: Set the installation directory, install the module and other options
. /configure --prefix=target path
3. Make compile
Purpose: Generate executable binary file
Convert source code into executable program
4.make install Installation
Purpose: Copy binary file to the system , Configure the application environment
5. Testing and application, maintenance software

2. Yum source warehouse installation

To install the source code software package, you need to compile and install. You need to install a compiler that supports C and C++ programming languages, such as gcc, gcc-c++, and make.
If you use rpm to install, you need to install multiple dependency packages first, which will be very cumbersome. Here you can use yum to perform one-click installation

1. Configure local yum source warehouse

mount /dev/cdrom /mnt/		    	  # 把光盘挂载到/mnt目录下
cd /etc/yum.repos.d/
mkdir repos.bak                          #创建目录
mv *.repo repos.bak                        #备份文件

vim local.repo
[local]						    	# 仓库类别
name=local						    # 仓库名称
baseurl=file:///mnt			    	# 指定URL 访问路径为光盘挂载目录
enabled=1					     	# 开启此yum源,此为默认项,可省略
gpgcheck=0						    # 不验证软件包的签名

yum clean all && yum makecache		#删除yum缓存并更新

yum clean                          #可以拆分成两个步骤来进行
yun makecache

2. Yum commonly used operating commands

yum -y install 软件名				# 安装、升级软件包,“-y”选项表示自动确认
yum -y remove 软件名				    # 卸载软件包,可自动解决其依赖关系
yum -y update 软件名				    #升级软件包

yum list							#查询软件包列表
yum list installed					#查询系统中已安装的软件包
yum list available					#查询仓库中尚未安装的软件包
yum list updates					#查询可以升级版本的软件包

yum info 软件名						#查询软件包的描述信息
yum info httpd

yum search [all] 关键词				#根据某个关键词来查找相关的软件包
yum search all httpd

yum whatprovides 命令				#查询命令属于哪个软件包
yum whatprovides netstat

Insert picture description here
Insert picture description here

[root@localhost yum.repos.d]# yum list  ####查看Yum列表(软件包)

If the software package appears, the installation is successful.
Insert picture description here

Guess you like

Origin blog.csdn.net/Wsxyi/article/details/113617032