树莓派4B安装ubuntu arm x64系统

树莓派由注册于英国的慈善组织“Raspberry Pi 基金会”开发,Eben·Upton/埃·厄普顿为项目带头人。2012年3月,英国剑桥大学埃本·阿普顿(Eben Epton)正式发售世界上最小的台式机,又称卡片式电脑,外形只有信用卡大小,却具有电脑的所有基本功能,这就是Raspberry Pi电脑板,中文译名"树莓派"。

自问世以来,受众多计算机发烧友和创客的追捧,曾经一“派”难求。别看其外表“娇小”,内“心”却很强大,视频、音频等功能通通皆有,可谓是“麻雀虽小,五脏俱全”。自从树莓派问世以来,经历了A型、A+型、B型、B+型、2B型、3B型、3B+型、4B型等型号的演进。2019年6月25日,树莓派基金会宣布树莓派4B版本发布。


Raspberry Pi

安装系统

使用树莓派刷机软件刷系统

下载对应系统的刷机软件,选择系统和SD卡,一键刷机。

  • Raspberry Pi Imager for Ubuntu
  • Raspberry Pi Imager for Windows
  • Raspberry Pi Imager for macOS

使用ubuntu官方镜像刷系统

下载Ubuntu arm 树莓派镜像,这里用的是Ubuntu 20.04 LTS arm x64。使用Etcher 刷入SD卡。

网络接入

由于刷的是Ubuntu 20.04 LTS的系统,树莓派系统通过SSHwpa_supplicant.conf文件的无线网络配置并不能生效,因此先用有线接入路由器,通过固定ip登录系统。

修改无线网络配置

安装网络管理软件

修改ubuntu 20.04 arm x64 国内源

1.sudo cp /etc/apt/sources.list  /etc/apt/sources.list.od

2. sudo vim /etc/apt/sources.list
deb https://mirror.tuna.tsinghua.edu.cn/ubuntu-ports/ focal main restricted universe multiverse
deb https://mirror.tuna.tsinghua.edu.cn/ubuntu-ports/ focal-updates main restricted universe multiverse
deb https://mirror.tuna.tsinghua.edu.cn/ubuntu-ports/ focal-backports main restricted universe multiverse
deb https://mirror.tuna.tsinghua.edu.cn/ubuntu-ports/ focal-security main restricted universe multiverse
deb https://mirror.tuna.tsinghua.edu.cn/ubuntu-ports/ focal-proposed main restricted universe multiverse

3. sudo apt-get update

修改为UTC-8时区

sudo timedatectl set-timezone "Asia/Shanghai"

安装网络工具

sudo apt-get install net-tools       # ifconfig
sudo apt-get install wireless-tools    # iwconfig

安装完成后可以分别看到有线网卡和无线网卡的配置,如下所示:


配置无线网络:

1.在/etc/netplan/里面配置一个*.yaml的文件。

2.修改这个yaml文件的内如,如下所示:

network:
    version: 2
    ethernets:
        eth0:
            optional: true
            dhcp4: true
    # add wifi setup information here ...
    wifis:
        wlan0:
            optional: true
            access-points:
                "YOUR-SSID-NAME":
                    password: "YOUR-NETWORK-PASSWORD"
            dhcp4: true
  1. 执行 sudo netplan --debug try 测试刚刚的配置
   如果出错,执行 sudo netplan --debug generate  # 查看更多信息
   如果没出错,执行 sudo netplan --debug apply  # 应用配置

4.重载配置

systemctl daemon-reload

再次执行ifconfig,可以看到有线网卡和无线网卡均分配了一个ip,如下所示:

拔掉网线,通过路由器管理软件找到无线地址,ssh接入成功。

查看系统版本和硬件信息

version
cpuinfo
htop

这个4core 4G的树莓派运行x64的arm系统还是绰绰有余的。

你可能感兴趣的:(树莓派4B安装ubuntu arm x64系统)