ubuntu 23 使用教程

一 安装
ware虚拟机安装Ubuntu
二 使用
首次进入root用户:sudo passwd root ,根据提示设置密码
进入root:su - root
更新系统:apt-get install update
安装ssh: apt-get install openssh-server
查看ssh状态:systemctl status ssh.ervice
配置sshd(注意:"#"要删除掉,否则无效):

sudo vim /etc/ssh/sshd_config
把#PermitRootLogin prohibit-password
改为:
PermitRootLogin yes

开启ssh服务:systemctl startssh.ervice
避免系统重启ssh关闭:systemctl enable ssh.service
查看ip:ifconfig
防火墙允许ssh访问(使用root权限):sudo ufw allow ssh
远程连接使用 Windows的cmd终端: ssh 用户名@ip

你可能感兴趣的:(linux,Ubuntu,ubuntu,linux,运维)