【运维日常】ubuntu系统默认没有ssh服务,需要手动安装-并加上自己手动添加sudo用户

  本站以分享各种运维经验和运维所需要的技能为主

《python零基础入门》:python零基础入门学习

《python运维脚本》: python运维脚本实践

《shell》:shell学习

《terraform》持续更新中:terraform_Aws学习零基础入门到最佳实战

《k8》暂未更新

《docker学习》暂未更新

《ceph学习》ceph日常问题解决分享

《日志收集》ELK+各种中间件

《运维日常》运维日常

《linux》运维面试100问

 安装ssh服务

sudo apt update && sudo apt upgrade 

sudo apt install ssh 

sudo systemctl enablt --now ssh

sudo systemctl status ssh

添加带有sudo的用户

sudo adduser tom

...

sudo usermod -a -G sudo tom

你可能感兴趣的:(运维日常,运维,ubuntu,ssh)