📜  安装 rpm fedora - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:39:06.073000             🧑  作者: Mango

安装 RPM 包 - Shell-Bash

在 Fedora 上,我们使用 dnf 包管理器来安装和管理软件包。在某些情况下,我们可能需要手动安装一个 RPM 包。本文将介绍如何在 Fedora 上使用 Shell-Bash 来安装 RPM 包。

步骤
  1. 查找需要安装的 RPM 包

我们需要先查找需要安装的 RPM 包,可以从官方软件库或第三方软件库中找到需要的 RPM 包。

示例:我们需要安装 httpd,可以使用 dnf search 命令查找该软件包。

$ dnf search httpd
Last metadata expiration check: 0:00:18 ago on Sun Aug  1 18:30:37 2021.
===================================================== Name & Summary Matched: httpd =====================================================
mod_http2.x86_64 : Apache HTTP/2 HTTP/1.1 protocol module
httpd-filesystem.noarch : The basic directory layout for the Apache HTTP server
httpd-manual.noarch : Documentation for the Apache HTTP server
httpd-devel.x86_64 : Development interfaces for the Apache HTTP server
httpd-tools.x86_64 : Tools for use with the Apache HTTP Server
httpd.x86_64 : Apache HTTP Server
libnghttp2_asio.x86_64 : Asynchronous I/O event loop driven by libnghttp2 -- Asio library
mod_auth_gssapi.x86_64 : A GSSAPI Authentication module for HTTPd.
... ...
  1. 下载 RPM 包

下载 RPM 包到本地。可以使用 wgetcurl 命令下载 RPM 包。

示例:下载 httpd 的 RPM 包。

$ wget http://ftp.riken.jp/Linux/fedora/releases/34/Everything/x86_64/os/Packages/h/httpd-2.4.48-1.fc34.x86_64.rpm
  1. 安装 RPM 包

使用 dnf 命令安装 RPM 包。

示例:安装 httpd 的 RPM 包。

$ sudo dnf install httpd-2.4.48-1.fc34.x86_64.rpm
结论

在 Fedora 上使用 Shell-Bash 安装 RPM 包非常容易,只需要查找,下载和安装三个简单步骤即可完成。