树莓派4B安装配置Ubuntu Server 19.10

  1. 下载镜像
    暂时下载32位的,按官网安装方法,64位的安装失败
    https://wiki.ubuntu.com/ARM/RaspberryPi?&_ga=2.234412502.939663094.1573821544-42405749.1573475047#Packages
  2. 配置网络, 在 /etc/netplay/*.yaml 文件中增加WIFI配置
network:
    ethernets:
        eth0:
            dhcp4: true
    version: 2    # 以上是原有的,下面的是新增
    wifis:
        wlan0:
            dhcp4: true
            access-points:
                "wlan-name":
                    password: "password here"
                    

重启后生效

  1. 安装桌面

    sudo apt install kubuntu-desktop

    睡觉去了…
发布了311 篇原创文章 · 获赞 225 · 访问量 84万+

猜你喜欢

转载自blog.csdn.net/Nocky/article/details/103093526