- A+
所属分类:linux技术
个人名片:
对人间的热爱与歌颂,可抵岁月冗长?
Github???:念舒_C.ying
CSDN主页✏️:念舒_C.ying
个人博客? :念舒_C.ying
1 开启root权限登陆
#修改root密码 sudo passwd root #安装ssh apt-get install ssh apt-get install openssh-server apt-get install openssh-client #开启root登录 sed -i 's/^#?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config #开启密码验证 sed -i 's/^#?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config #重启ssh服务 service sshd restart
2 网卡配置
vim /etc/netplan/01-network-manager-all.yaml ethernets: ens33: #网卡名称 dhcp4: no addresses: [192.168.2.123/24] #静态IP及掩码 optional: true gateway4: 192.168.2.1 #网关 nameservers: addresses: [202.100.64.68] #DNS #重启网络 netplan apply
期待下次的分享,别忘了三连支持博主呀~
我是 念舒_C.ying ,期待你的关注~???