欢迎关注我的博客:
微信公众号:今晚穿越zhibo
CSDN:今晚穿越直播
原文链接:Centos9遇到的三个事
=========================================================================
目录
目录
三个事情
一、root用户ssh登录password方式禁用解除
二、配置centos9的本地yum源
三、配置centos9连接外网
设置root用户ssh方式密码登录
默认不允许root用户通过ssh方式使用密码登录
设置允许root用户通过ssh方式使用密码登录
修改ssh配置文件PermitRootLogin为yes
[root@centos9clone ~]# vi /etc/ssh/sshd_config
[root@centos9clone ~]# cat /etc/ssh/sshd_config |grep PermitRootLogin |grep -v "^#"
PermitRootLogin yes
重启sshd进程
[root@centos9clone ~]# systemctl restart sshd
重新通过密码登录已正常
配置centos9的本地yum源
本地yum源的配置文件内容如下
[root@centos9clone ~]# cat /etc/yum.repos.d/centos.repo
[BaseOS]
name=BaseOS
baseurl=file:///media/BaseOS
gpgcheck=0
enabled=1
[AppStream]
name=AppStream
baseurl=file:///media/AppStream
gpgcheck=0
enabled=1
挂载ISO文件
挂载
[root@centos9clone ~]# mount -o loop /root/CentOS-Stream-9-latest-x86_64-dvd1.iso /media/
mount: /media: WARNING: source write-protected, mounted read-only.
清除yum缓存
[root@centos9clone ~]# dnf clean all
缓存新的yum源
[root@centos9clone ~]# dnf makecache
查看yum源
[root@centos9clone ~]# dnf list all
centos9虚拟机连接外网
网卡设置如下
其中ipv4的address1设置子网ip与虚拟机软件的子网ip一致,
都是192.168.26.2
[root@centos9clone ~]# cat /etc/NetworkManager/system-connections/ens33.nmconnection
[connection]
id=ens33
uuid=c6ad7c80-bf3e-316a-ac0f-88cf94281672
type=ethernet
autoconnect-priority=-999
interface-name=ens33
timestamp=1710778400
[ethernet]
[ipv4]
address1=192.168.26.9/24,192.168.26.2
method=manual
[ipv6]
addr-gen-mode=eui64
method=auto
[proxy]
设置DNS服务器,都是谷歌免费的DNS服务器地址:8.8.8.4/8
[root@centos9clone ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search digicert.com
#DNS设置
nameserver 8.8.8.4
nameserver 8.8.8.8
重启网络服务
[root@centos9clone ~]# systemctl restart NetworkManager
可以连通外网