0℃
2024年07月31日
⁄ Linux
⁄ 被围观 1,871次+
一、安装Rocky-9.4
服务器一般不需要安装桌面环境,建议使用Minimal ISO镜像来安装系统。
下载地址:https://download.rockylinux.org/pub/rocky/9/isos/x86_64/Rocky-9.4-x86_64-minimal.iso
成功引导系统后,会出现下面的界面
界面说明:
Install Rocky Linux 9.4 #安装Rocky Linux 9.4
Test this media & install Rocky Linux 9.4 #测试安装文件并安装Rocky Linux 9.4
Troubleshooting #修复故障
这里选择第一项,安装Rocky Linux 9.4,回车,进入下面的界面
语言选择界面,正式生产服务器建议安装英文...
linux, Rocky阅读全文
0℃
2024年07月09日
⁄ Linux
⁄ 被围观 1,169次+
1、使用yum包管理器安装
#创建安装包下载目录
mkdir -p /data/soft/ansible
#下载ansible及其所有依赖
yum -y install epel-release #CentOS系统需要安装第三方yum源
yum install -y ansible --downloadonly --downloaddir=/data/soft/ansible
#离线安装
cd /data/soft/ansible
yum localinstall *.rpm -y
#查看版本
ansible --version
2、使用pip安装
cd /data/soft/ansible
pip3 download --index-url https://mirrors.aliyun.com/pypi/simple/ ansible==2.9.27
#离线安装
pip3 install ansible==2.9.27 --no-i...
ansible, linux阅读全文