Windows 系统自带的 WSL 用起虚拟机来真的很舒服,
最近尝试了 Ubuntu 24.04.1 LTS for WSL2,
配置出来超级完美!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| # 更新软件包列表 sudo apt update
# 安装Xfce桌面(推荐轻量级) sudo apt install xfce4 xfce4-goodies
# 安装GNOME桌面 # sudo apt install ubuntu-desktop
# 配置中文环境 sudo apt install language-pack-zh-hans sudo dpkg-reconfigure locales sudo gedit /etc/default/locale # 编辑保存以下内容 LANG=zh_CN.UTF-8 LANGUAGE=zh_CN:zh LC_CTYPE="zh_CN.UTF-8" LC_NUMERIC="zh_CN.UTF-8" LC_TIME="zh_CN.UTF-8" LC_COLLATE="zh_CN.UTF-8" LC_MONETARY="zh_CN.UTF-8" LC_MESSAGES="zh_CN.UTF-8" LC_PAPER="zh_CN.UTF-8" LC_NAME="zh_CN.UTF-8" LC_ADDRESS="zh_CN.UTF-8" LC_TELEPHONE="zh_CN.UTF-8" LC_MEASUREMENT="zh_CN.UTF-8" LC_IDENTIFICATION="zh_CN.UTF-8" LC_ALL=zh_CN.UTF-8
# 设置Xrdp使用的桌面环境(如 Xfce4) echo xfce4-session >~/.xsession
# 安装Xrdp sudo apt install xrdp # 启用Xrdp服务 sudo systemctl enable xrdp
|
用系统自带的远程桌面连接即可,使用方式与前文 Windows 最佳拍档 Fedora Remix for WSL2 系列一样。