第一部分,ubuntu 20.04 系统安装

首先,下载 ubuntu 20.04 iso 文件,然后制作USB 启动盘;Mac 下可以用Disk Utility 工具,将 U盘分区抹去,选择 MS FAT 格式,GUID分区方案
usb partition
然后用 etcher刻录
etcher 界面
刻录完成后,插入 LattePanda,再接入鼠标和键盘,显示器。
启动LattePanda Delta 后,多按几次 Del 键,会进入 bios 设置界面。
将U盘设置为第一启动盘,保存退出。
出现ubuntu grub安装界面,选择安装即可,我这里选择了 oem 方式玩玩。
在这里插入图片描述

系统会显示 LattePanda 的 logo
在这里插入图片描述
选择分区方案时,我采用了自定义,以免破坏原来的windows 10 系统;ubuntu 17 开始,不再使用 swap 分区,将所有空闲空间都划分为 ext4 格式,挂载为 root 。
在这里插入图片描述
然后就是耐心等待了。
在这里插入图片描述
如果你的网络不是特别好,最好跳过所有的在线更新,等后面更改了apt源镜像后,再安装不迟。
安装完成后,拔出U盘,重启,这里无需额外bios设置,启动盘会是ubuntu,进入桌面后,因为我是OEM安装,再运行一下 oem-config ,来创建最终用户。
在这里插入图片描述
重启进入桌面后,主要硬件看起来都工作正常。
显卡 ok, 可以驱动4K 显示器。
蓝牙 ok
wifi ok , 可以连上热点。
声卡 ok,可以听到启动音乐。
在这里插入图片描述
更改apt源镜像,更新系统
在这里插入图片描述

通过 Visual Studio Code Insider,安装 PlatformIO 后,刷写 Arduino 也正常,简单跑了个 Python 程序刷新 oled 屏幕也正常。
看起来一切正常,无需我额外关注硬件驱动。

第二部分,openvino 及 intel neural computer stick2 驱动

因为在linux 下安装 openvino 许多次了,习惯性下载了最新的 2020.4 安装包,开始执行依赖安装脚本。
出错了,许多包文件找不到。

E: Unable to locate package gudev-1.0
E: Unable to locate package libusb-1.0.0-dev
E: Package 'libfluidsynth1' has no installation candidate
E: Unable to locate package libnettle6
E: Unable to locate package libopenexr22
E: Unable to locate package python3.6
E: Unable to locate package libpython3.6

于是手动修改依赖安装脚本,将出错的包名更换为 逗号后面的新包名,再删除 python3.6 的依赖。

$ vi ./install_openvino_dependencies.sh
E: Unable to locate package gudev-1.0 ,libgudev-1.0-dev
E: Unable to locate package libusb-1.0.0-dev, libusb-1.0-0-dev
E: Package 'libfluidsynth1' has no installation candidate, libfluidsynth2
E: Unable to locate package libnettle6, libnettle7
E: Unable to locate package libopenexr22, libopenexr24

这次安装成功了。

panda@Panda:~/git/l_openvino_toolkit_p_2020.4.287$ sudo -E ./install_openvino_dependencies.sh
This script installs the following OpenVINO 3rd-party dependencies:
  1. GTK+, FFmpeg and GStreamer libraries used by OpenCV
  2. libusb library required for Myriad plugin for Inference Engine
  3. build dependencies for OpenVINO samples
  4. build dependencies for GStreamer Plugins
Hit:1 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Get:2 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease [111 kB]
Get:3 https://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease [98.3 kB]

然后是 openvino 库安装,自检时依然抱怨不满足先决条件,查看详细信息,发现OS最高支持到 ubuntu 18.04。

Prerequisites > Missing Prerequisite
--------------------------------------------------------------------------------
Detected operating system is not supported. Supported operating systems for this
release are: 
    - CentOS* 7 (Intel(R) 64);
    - Ubuntu* 16.04 (Intel(R) 64), 18.04 (Intel(R) 64);
    - Yocto  (Intel(R) 64);
--------------------------------------------------------------------------------
   1. See next issue [ default ]
   2. Back to Prerequisite summary dialog
   h. Help
   b. Back
   q. Quit installation

忽视警告强行安装后,很多关键库文件都没有安装。

--------------------------------------------------------------------------------
Install location:
    /opt/intel
The following components will be installed:
    Model Optimizer                                                          4MB
        Model Optimizer Tool                                                 4MB
    Deep Learning Workbench                                                 10MB
        Deep Learning Workbench                                             10MB
    Open Model Zoo                                                          58MB
        Open Model Zoo                                                      58MB
    Intel(R) Media SDK                                                     128MB
        Intel(R) Media SDK                                                 128MB
   Install space required:  292MB
Installation
--------------------------------------------------------------------------------
Each component will be installed individually. If you cancel the installation,
some components might remain on your system. This installation may take several 
minutes, depending on your system and the options you selected.
--------------------------------------------------------------------------------
Installing Model Optimizer Tool component... done
--------------------------------------------------------------------------------
Installing Deep Learning Workbench component... done
--------------------------------------------------------------------------------
Installing Open Model Zoo component... done
--------------------------------------------------------------------------------
Installing Intel(R) Media SDK component... done
--------------------------------------------------------------------------------
Finalizing product configuration...
--------------------------------------------------------------------------------
First Part of Installation is Complete
--------------------------------------------------------------------------------
The first part of Intel® Distribution of OpenVINO™ toolkit 2020.4 for Linux*
                                    由于最近要使用inter的一款名为Intel® Movidius™ Myriad™ X 的加速卡去实现对算法模型的加速推理能力,于是就得第一步安装openvino,然后再使用卡去验证openvino是否安装ok,卡是否真的存在推理加速的能力。基于以上的情况花了两周多对openvino安装以及安装过程中遇到的问题、卡使用过程中报的错,做一些总结,文章分为几个部分:openvino 运行环境安装openvino开发环境安装,加速卡使用报错以及问题排查。
                                    最近入手了一块lattepanda alpha开发板,将正版win10刷成了Ubuntu18.04,想使用串口登录板子的Ubuntu终端,查了几天,奈何官网资料太少,自己拿着板子折腾的够呛,特此记下:首先查看/dev下面的设备驱动pi@pi-Alpha:~$ls -l /dev/tty*pi@pi-Alpha:~$.........pi@pi-Alpha:~$crw------- 1 pi   t...
                                    本帖最后由 铁甲小宝 于 2020-9-3 17:58 编辑LattePanda&AI-Linux系统环境部署概述——————————————————————————————————————————大家应该知道,项目的调试运行需要一些环境的支持,而部署环境的过程有时会非常的繁琐,为了方便项目开发者能专注于项目的实现,我们制作了包含以下环境的系统镜像:● Anaconda——可以便捷获取包且...
                                    最近项目中会用到docker,docker内部深度学习的环境虽然好用,但就是环境太干净了,所以需要花点儿时间对一些基本的依赖进行安装。比如nvidia-docker中需要安装pythonopencv等等的一些依赖。在配置opencv的环境过程中就出现了unable to locate package libjasper-dev的问题,现将问题解决办法记录如下:
`unable to locate package libjasper-dev
该问题实际上是因为docker环境太干净,无法找到一些源的原因。因
依次执行如下命令:
sudo add-apt-repository "deb http://security.ubuntu.com/ubuntu xenial-security main"
sudo apt update
sudo apt install libjasper1 libj...
                                    如何从根本上解决E: Unable to locate package错误的方法最终解决的方法
本人使用ubuntu好几个星期了,但一直出现一个问题,到今天才彻底解决了,什么问题呢?问题一:好些安装软件时提示E:Unable to locate package  Fcitx,不能安装中文界面,所以一直使用英文界面,难堪啊,我英文不是很好,幸好有有道词典帮忙;问题二,系统更新不了,很多软件安装时都会提示E:Unable to locate package 这类错误。我试了很多方法,如下:
安装中文输入法时:
                                    当我第一次听到拿铁熊猫时,我没想到它是一台计算机,我想到的竟然是咖啡!!我相信很多人应该会有和我一样对这个名字出乎意料。拿铁熊猫并不是咖啡,而是DFrobot针对工业应用领域推出的一款单板计算机,有别于市面上很多的单板计算机,拿铁熊猫最大的一个特征是可以支持完整版的Win 10系统。![拿铁熊猫](https://img-blog.csdnimg.cn/20200728014227952.jpg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,s
                                    这两天跟着一门网课学把html的网页部署到云服务器,于是租了个Ubuntu云服务器,照着网课的代码去执行,然后一直出现这个问题,各种包都找不到,以及之前用Ubuntu的时候也出现过这个问题,从网上搜了30个中文的回答,解决方案大抵一致,全都试了一遍无果,于是开始利用google搜索引擎,还有bing搜索的国际版(全英文),然后令我大吃一惊,第一个搜索到的内容就成功解决了我的问题!不得不说,计算机的问题还得是用google搜索,或者bing国际版,去看英文的回答比较准确,为什么呢,因为一是中文的回答大多都是转