Linux配置yum源练习

题目

1.配置一个本地软件源

  1. 通过yum命令安装 mysql-server

3.使用yum 删除 mysql-server

4.查看nginx软件的详情

解题

1)挂载镜像以使用

bash 复制代码
#挂载镜像
[root@HeHe ~]# mkdir /mnt/redhat_osi
[root@HeHe ~]# mount /dev/sr0 /mnt/redhat_osi/
#做软件仓库的元数据
#(1)创建本地软件仓库
[root@HeHe ~]# cd /etc/yum.repos.d/
[root@HeHe yum.repos.d]# vim local.repo
  1 [local-base]
  2 name=local-base
  3 baseurl=file:///mnt/redhat_osi/BaseOS/
  4 gpgcheck=0
  5
  6 [local-appstream]
  7 name=local-appstream
  8 baseurl=file:///mnt/redhat_osi/AppStream/
  9 gpgcheck=0
#(2)#生成软件仓库的元数据
[root@HeHe yum.repos.d]# dnf(yum) makecache

2)命令安装 mysql-server

bash 复制代码
[root@HeHe yum.repos.d]# yum install mysql-server.x86_64
Updating Subscription Management repositories.
Unable to read consumer identity
Total size: 21 M
Installed size: 179 M
Is this ok [y/N]: y
---
Installed:
  mariadb-connector-c-config-3.2.6-1.el9_0.noarch mecab-0.996-3.el9.4.x86_64         mysql-8.0.36-1.el9_3.x86_64
  mysql-common-8.0.36-1.el9_3.x86_64              mysql-errmsg-8.0.36-1.el9_3.x86_64 mysql-selinux-1.0.10-1.el9.noarch
  mysql-server-8.0.36-1.el9_3.x86_64              protobuf-lite-3.14.0-13.el9.x86_64

Complete!

3)删除 mysql-server

bash 复制代码
[root@HeHe yum.repos.d]# yum remove -y mysql-server.x86_64
Updating Subscription Management repositories.
Unable to read consumer identity
---
Installed products updated.

Removed:
  mariadb-connector-c-config-3.2.6-1.el9_0.noarch mecab-0.996-3.el9.4.x86_64         mysql-8.0.36-1.el9_3.x86_64
  mysql-common-8.0.36-1.el9_3.x86_64              mysql-errmsg-8.0.36-1.el9_3.x86_64 mysql-selinux-1.0.10-1.el9.noarch
  mysql-server-8.0.36-1.el9_3.x86_64              protobuf-lite-3.14.0-13.el9.x86_64

Complete!

4)查看nginx软件的详情

bash 复制代码
[root@HeHe yum.repos.d]# yum info nginx
---
Available Packages
Name         : nginx
Epoch        : 1
Version      : 1.20.1
Release      : 14.el9_2.1
Architecture : x86_64
Size         : 40 k
Source       : nginx-1.20.1-14.el9_2.1.src.rpm
Repository   : local-appstream
Summary      : A high performance web server and reverse proxy server
URL          : https://nginx.org
License      : BSD
Description  : Nginx is a web server and a reverse proxy 
---
相关推荐
路溪非溪1 分钟前
Linux加载一个应用程序的过程总结
linux·运维·服务器
QT.qtqtqtqtqt1 小时前
攻防世界easyphp
linux·运维·服务器
菜鸟康2 小时前
Linux系统编程——系统内核中的信号
linux·运维·服务器
CSND7403 小时前
Ubuntu vi(vim)编辑器配置一键补全main函数
linux·c语言·ubuntu·编辑器·vim
シ風箏6 小时前
Neo4j【环境部署 02】图形数据库Neo4j在Linux系统ARM架构下的安装使用
linux·数据库·arm·neo4j
Cachel wood8 小时前
Vue.js前端框架教程8:Vue消息提示ElMessage和ElMessageBox
linux·前端·javascript·vue.js·前端框架·ecmascript
小屁不止是运维11 小时前
麒麟操作系统服务架构保姆级教程(二)ssh远程连接
linux·运维·服务器·学习·架构·ssh
超爱吃士力架12 小时前
Ubuntu操作系统安装docker
linux·前端·后端
黑客K-ing13 小时前
网络安全防范
linux·服务器·web安全
王三三13 小时前
群晖利用acme.sh自动申请证书并且自动重载证书的问题解决
linux·自动化·证书·群晖·acme·acme.sh·lets encrypt