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
# 安裝遠(yuǎn)程桌面
sudo apt-get install -y xrdp
1
2
3
4
5
6
7
8
安裝google瀏覽器
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
1
2
安裝中文語言包
sudo apt-get install language-pack-zh-hans
1
追加內(nèi)容 到/etc/environment
#LANG="zh_CN.UTF-8"
LANG="en_US.UTF-8"
LANGUAGE="en_US:en:zh_CN:zh"
1
2
3
sudo locale-gen
# 中文亂碼,空格解決
sudo apt-get install fonts-droid-fallback ttf-wqy-zenhei ttf-wqy-microhei fonts-arphic-ukai fonts-arphic-uming
1
2
3
————————————————
版權(quán)聲明:本文為CSDN博主「endswel」的原創(chuàng)文章,遵循CC 4.0 BY-SA版權(quán)協(xié)議,轉(zhuǎn)載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/endswell/article/details/127407478