7.6 yum更换国内源
将目录下面的其他yum源删除,再下载这个
[root@localhost ~]# yum -y install wget
[root@localhost ~]# wget
或者:
[root@localhost tmp]# curl -O
7.7 yum下载rpm包
安装扩展源:
[root@localhost tmp]# yum -y install epel-release
[root@localhost tmp]# yum list | grep epel //查看epel的相关rpm包
[root@localhost tmp]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# ls
epel.repo
对于rpm不仅仅是安装,还要将rpm包保存到本地。
1、仅下载,不安装
2、下载后,默认存储的目录。具体要看是从哪个源中下载的。
3、指定下载的目录
4、如果要下载的文件已经安装过,那么需要使用reinstall来现在rpm包
7.8/7.9 源码包安装
[root@localhost ~]# cd /usr/local/src/
[root@localhost src]# wget
[root@localhost src]# tar zxf httpd-2.4.32.tar.gz
[root@localhost src]# cd httpd-2.4.32
[root@localhost httpd-2.4.32]# yum -y install pcre*
[root@localhost httpd-2.4.32]# yum -y install apr-util*
[root@localhost httpd-2.4.32]# yum -y install apr
[root@localhost httpd-2.4.32]# ./configure --prefix=/usr/local/apache2
[root@localhost httpd-2.4.32]# make && make install
卸载软件:
直接删除安装的相关文件即可。
安装方式:三种
rpm安装
yum安装
源码安装
阅读(1065) | 评论(0) | 转发(0) |