ubuntu
前言
用 pve 安装了一台 ubuntu 桌面环境,打算用来做开发环境,以下是配置教程。系统版本为 ubuntu-22.04.2-desktop-amd64-LTS.iso 。
允许 root 账户 ssh 登录
安装 openssh-server 服务
apt install -y openssh-server
echo " PermitRootLogin yes" > /etc/ssh/sshd_config
service ssh restart
开启远程桌面
安装nmtui
apt install network-manager
systemclt start NetworkManager
nmtui
配置镜像源提示ubuntu could not resolve host,编辑 vi /etc/resolvconf/resolv.conf.d/base
增加内容如下:
nameservers 8.8.8.8
# nameservers 114.114.114.114
cat