[Linux] 树莓派 4B 安装 Ubuntu 19.10 (Eoan Ermine) IOT 版
硬件:Raspberry Pi 4B
系统:Ubuntu 19.10 (Eoan Ermine) for IOT
官网:https://ubuntu.com/download/iot/raspberry-pi
配置步骤
1. 下载系统镜像
http://cdimage.ubuntu.com/releases/19.10/release/ubuntu-19.10-preinstalled-server-arm64+raspi3.img.xz
2. 烧录至SD卡进行系统安装
3. 系统登陆
默认账号:ubuntu
默认密码:ubuntu
4. 更换镜像源
4.1 备份 apt 源文件
sudo cp -p /etc/apt/sources.list /etc/apt/sources.list.bak
4.2 编辑 apt 源文件,更新为国内镜像源
注意:路径节点不是 ubuntu,而是 ubuntu-ports
注意:系统版本号为 Ubuntu 19.10,对应代号为 eoan
注意:系统版本号为 Ubuntu 20.04,对应代号为 focal
sudo nano /etc/apt/sources.list
#阿里云源
deb http://mirrors.aliyun.com/ubuntu-ports eoan main restricted
deb http://mirrors.aliyun.com/ubuntu-ports eoan-updates main restricted
deb http://mirrors.aliyun.com/ubuntu-ports eoan universe
deb http://mirrors.aliyun.com/ubuntu-ports eoan-updates universe
deb http://mirrors.aliyun.com/ubuntu-ports eoan multiverse
deb http://mirrors.aliyun.com/ubuntu-ports eoan-updates multiverse
deb http://mirrors.aliyun.com/ubuntu-ports eoan-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports eoan-security main restricted
deb http://mirrors.aliyun.com/ubuntu-ports eoan-security universe
deb http://mirrors.aliyun.com/ubuntu-ports eoan-security multiverse
5. 安装桌面环境(可选择:xubuntu-desktop、lubuntu-desktop、kubuntu-desktop)
sudo apt-get install xubuntu-desktop
6. 重启系统
sudo reboot
异常情况
如果 #5 apt-get 安装出错如下,可以恢复为 ubuntu 官方源进行安装。
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming. The following information may help to resolve the situation:
The following packages have unmet dependencies:
参考资料
https://ubuntu.com/download/iot
https://opsx.alibaba.com/mirror
https://mirrors.ustc.edu.cn/
[Linux] 树莓派 4B 安装 Ubuntu 19.10 (Eoan Ermine) IOT 版的更多相关文章
- 程序员的 Ubuntu 19.10 配置与优化指南
		
原文地址:程序员的 Ubuntu 19.10 配置与优化指南 0x00 环境 CPU: Intel Core i9-9900k GPU: GeForce RTX 2070 SUPER RAM: DDR ...
 - 树莓派4B安装docker-compose(64位Linux)
		
准备工作 树莓派4B已装好64位Linux,并且装好了19.03.1版本的Docker,具体的安装步骤请参考<树莓派4B安装64位Linux(不用显示器键盘鼠标)> 安装docker-co ...
 - Ubuntu 19.10安装Wine软件
		
======================================== 我使用的操作系统版本为Ubuntu 19.10 64位,如果是32位Ubuntu19.10则可以跳过步骤一 1.添加 ...
 - [Linux] 在 Ubuntu 19.10 上开启 SSH 服务并允许远程登录
		
在 Ubuntu 19.10 上安装 SSH,并开启服务 0.检查并确认系统当前是否已安装SSH: sudo ps -e | grep ssh 如果只有 ssh-agent 说明 ssh-server ...
 - Ubuntu 19.10 安装 jupyter
		
安装pip3 ubuntu 19.10 已经没有python了,取代的是python3. 执行sudo apt install python3-pip安装pip3 安装jupyter 执行sudo p ...
 - 其它综合-VMware虚拟机安装Ubuntu 19.04 版本
		
Ubuntu 19.04 版本安装过程 1. 环境: 使用的虚拟机软件是VMware,版本为 12 .(网上一搜一大推,在此不再演示.) 使用的 ISO镜像为Ubuntu 19.04.(自己也可以在网 ...
 - 转载:安装Ubuntu 15.10后要做的事
		
转载:安装Ubuntu 15.10后要做的事 原文转载于:http://blog.csdn.net/skykingf/article/details/45267517 Ubuntu 15.10发布了, ...
 - Ubuntu 19.10 发布 | 云原生生态周报 Vol. 24
		
作者 | 木苏.进超.冬岛.元毅.心水.衷源 业界要闻 1.云原生编程语言 Pulumi 1.0 pulumi ,一款中立的开源云开发平台,Pulumi 支持多语言.混合云环境.完全可扩展.初期支持 ...
 - 安装教程-VMware 12 安装Ubuntu 19.04 桌面版
		
VMware 12 安装Ubuntu 19.04 桌面版 1.实验描述 在虚拟机中,手动安装 Ubuntu 19.04 操作系统,为学习 Linux 桌面版提供平台,因此,有的参数有些差异,请勿较真. ...
 
随机推荐
- 16-Flutter移动电商实战-切换后页面状态的保持AutomaticKeepAliveClientMixin
			
底栏切换每次都重新请求是一件非常恶心的事,flutter 中提供了AutomaticKeepAliveClientMixin 帮我们完成页面状态保存效果. 1.AutomaticKeepAliveCl ...
 - Python高级函数--filter
			
def is_palindrome(n): return str(n) == str(n)[::-1] #前两个‘:’表示整个范围,‘-’表示从后面,‘1’表示数据间隔 output = filter ...
 - Maven配置文件setting.xml详解
			
注:本文来源于:大话JAVA的那些事 <Maven配置文件setting.xml详解> <?xml version="1.0" encoding="UT ...
 - PAT刷题 (Java语言)
			
1001. A+B Format (20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Calculate ...
 - Android Studio 之 DataBing ,不需要再一个个findViewById了
			
使用DataBinding,不需要再一个个findViewById了 1.在 build.gradel 中 添加下面语句 dataBinding{ enabled true } 2.在 activit ...
 - linux操作系统与jvm
			
线程调度 https://www.cnblogs.com/xiaotlili/p/3510224.html
 - js之切换全屏和退出全屏实现
			
应用场景:比如很多网页游戏全屏之类的,或者是网上看小说等. 核心代码: //控制全屏 function enterfullscreen() { //进入全屏 $("#fullscreen&q ...
 - 2018-2019-2 20175211 实验四《Android程序设计》实验报告
			
目录 一.实验内容及步骤 1.Android Studio的安装测试 2.Activity测试 3.UI测试 4.布局测试 5.事件处理测试 二.问题及解决方法 三.代码托管 四.实验心得体会 一.实 ...
 - [Linux]下的StarUML永远使用版
			
这是Linux下的StarUML,其实windows下的是一样的 请不要用于商业目的 这是Linux下的StarUML 解压之后,这是一个appImage文件,也就是说,双击直接运行的版本 [Bash ...
 - vs2017+qt5.x编译32位应用<转>
			
原文地址:https://www.cnblogs.com/woniu201/p/10862170.html 概述 最近有同学私信我,问如何使用vs2017+qt5.10编译出32位的应用,需要使用ms ...