Ubuntu Server 22.04 安装桌面

Ubuntu Server 22.04 安装桌面

sudo apt-get update
sudo apt-get upgrade

apt-get install -y ubuntu-desktop
# 如果你不想安装一些附加的程序,可用以下命令
sudo apt install --no-install-recommends ubuntu-desktop
# 安装远程桌面
sudo apt-get install -y xrdp

Ubuntu Server 22.04 安装桌面_第1张图片

安装google浏览器

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb

安装中文语言包

sudo apt-get install language-pack-zh-hans

追加内容 到/etc/environment

#LANG="zh_CN.UTF-8"
LANG="en_US.UTF-8"
LANGUAGE="en_US:en:zh_CN:zh"
sudo locale-gen
# 中文乱码,空格解决
sudo apt-get install fonts-droid-fallback ttf-wqy-zenhei ttf-wqy-microhei fonts-arphic-ukai fonts-arphic-uming

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