树莓派OS Lite系统安装LXDE桌面环境

  参考官方主页:https://www.raspberrypi.org/forums/viewtopic.php?t=133691

一、安装配置Raspberry Pi OS Lite

1.1、安装Raspberry Pi OS Lite

  按照https://www.raspberrypi.org/software/operating-systems/#raspberry-pi-os-32-bit所示安装系统。登录系统用户名是pi,密码是raspberry。

1.2、配置WI-FI

  1、输入指令:sudo raspi-config
  2、选择:1 System Options
  3、选择:S1 Wireless LAN
  4、输入SSID和密码

二、系统更新

sudo apt-get update   
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get clean

三、安装中文字体

  1、输入命令:sudo apt-get install ttf-wqy-zenhei ttf-wqy-microhei
  2、输入命令:sudo raspi-config进入配置
  3、选择Localisation Options
  4、选择Locale
  5、选择zh_CN.GBK和zh_CN.UTF-8(空格键)
  6、再次选择zh_CN.UTF-8

四、安装桌面

4.1、安装xorg

sudo apt-get install --no-install-recommends xserver-xorg

4.2、安装xinit

 sudo apt-get install --no-install-recommends xinit

4.2、安装lxde

 sudo apt-get install lxde-core lxappearance

4.4、安装登录管理器

sudo apt-get install lightdm  

4.5、启动桌面系统

startx

猜你喜欢

转载自blog.csdn.net/xxxx123041/article/details/120214203