# vim /etc/zypp/zypp.conf
添加以下内容:
......
gpgcheck=0
# vim /etc/zypp/zypp.conf
添加以下内容:
......
gpgcheck=0
# yum install yum-utils -y
(注意:这里假设的情况是本系统可以正常使用 YUM 安装软件)
# yumdownloader --resolve --destdir /tmp/ansible ansible
(补充:这里以将 ansible 安装包和 ansible 的依赖包下载到本地的 /tmp/ansible 目录为例)
(
注意:
1) 这里建议直接下载软件名称比如这里的 ansible,而不是下载指定了具体版本的软件,如果下载制定了具体版本的软件,其对应的依赖包可能不会下载下来
2) 这里假设的情况是本系统可以正常使用 YUM 安装软件
)
# yumdownloader --resolve --destdir /tmp/ansible createrepo
(补充:这里以将 createrepo 安装包和 createrepo 的依赖包下载到本地的 /tmp/ansible 目录为例)
(注意:这里假设的情况是本系统可以正常使用 YUM 安装软件)
# cd /tmp/ansible
(补充:这里以进入到目录 /tmp/ansible 为例)
# rpm -ivh createrepo_c & rpm -ivh createrepo_c-libs & rpm -ivh drpm
(
补充:这里安装的软件包有
1) createrepo_c
2) createrepo_c-libs
3) drpm
)
# cd ../
# createrepo ansible
(补充:这里以用 ansible 目录里的软件包创建 YUM 源为例)
# vim /etc/yum.repos.d/ansible.repo
创建以下内容:
[ansible]
name=ansible
baseurl=file:///tmp/ansible
gpgcheck=0
enabled=1
(
补充:这里以
1) 文件名为 ansible
2) 文件标题为 ansible
3) YUM 源的软件包位置在 /tmp/ansible
4) 不进行 gpgcheck 检测
5) 启用此 YUM 源
为例
)
# yum install ansible -y
(补充:这里以安装 ansible 软件为例)
# yum install yum-utils -y
# yumdownloader --resolve --destdir /tmp/ansible ansible
(补充:这里以将 ansible 安装包和 ansible 的依赖包下载到本地的 /tmp/ansible 目录为例)
>certUtil -hashfile <file> MD5
Or:
> Get-FileHash .\<file> -Algorithm MD5 | Format-List
>certUtil -hashfile <file> SHA256
https://rockylinux.org/download
https://www.opensuse.org/
https://dev.mysql.com/downloads/mysql/