ubuntu 虚拟机初始化设置

设置root密码

sudo passwd root

设置允许root用户登录ssh

#   安装openssh-server
apt-get install openssh-server
#   编辑配置文件
vim /etc/ssh/sshd_config
#   找到Authentication部分找到“PermitRootLogin without-password”注释在下方加入
PermitRootLogin yes
#   重起ssh服务
service ssh restart

更换阿里源

sed -i s@/cn.archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
#   更新
apt-get update && apt-get upgrade -y

时间同步

apt-get install ntpdate -y

# 定时任务
*/01 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1

# 设置时区
timedatectl set-timezone Asia/Shanghai

设置主机名

hostnamectl set-hostname node-0

版权声明:
作者:Akiraka
链接:https://www.akiraka.net/linux/ubuntu/32.html
来源:Akiraka
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
海报
ubuntu 虚拟机初始化设置
设置root密码 sudo passwd root 设置允许root用户登录ssh # 安装openssh-server apt-get install openssh-server # 编辑配置文件 vim /etc/ssh/sshd_confi……
<<上一篇
下一篇>>
文章目录
关闭
目 录