Ubuntu_Desktop实验机初始配置
Ubuntu_Desktop实验机初始化配置 #安装 sshd 服务 sudo apt install openssh-server -y sudo sh -c "echo 'PermitRootlogin yes' >> /etc/ssh/sshd_config" sudo systemctl start opensshd #设置默认启动目标 sudo systemctl set-default multi-user.target #默认为 graphical.target ...