Yocto - Project Quick Build

欢迎光临!

这篇简短的文档将向您介绍使用 Yocto 项目构建典型镜像的过程。本文还介绍了如何为特定硬件配置构建。您将使用 Yocto Project 构建一个名为 Poky 的参考嵌入式操作系统。

Welcome!

This short document steps you through the process for a typical image build using the Yocto Project. The document also introduces how to configure a build for specific hardware. You will use Yocto Project to build a reference embedded OS called Poky.

注意

  • 本文中的示例假定您使用的是运行最新 Ubuntu Linux 发行版的原生 Linux 系统。如果你想使用 Yocto Project 来构建镜像(构建主机)的机器不是本地 Linux 系统,你仍然可以通过使用 CROss PlatformS (CROPS) 和设置 Poky 容器来执行这些步骤。更多信息,请参阅《Yocto 项目开发任务手册》中的 "设置使用 CROss PlatformS (CROPS)" 章节。

  • 您可以使用第 2 版 Windows Subsystem For Linux (WSL 2) 来设置使用 Windows 10 或更高版本、Windows Server 2019 或更高版本的构建主机。更多信息,请参阅《Yocto 项目开发任务手册》中的 "设置使用 Windows Linux 子系统(WSL 2)"部分。

Note

* The examples in this paper assume you are using a native Linux system running a recent Ubuntu Linux distribution. If the machine you want to use Yocto Project on to build an image (Build Host) is not a native Linux system, you can still perform these steps by using CROss PlatformS (CROPS) and setting up a Poky container. See the Setting Up to Use CROss PlatformS (CROPS) section in the Yocto Project Development Tasks Manual for more information.

* You may use version 2 of Windows Subsystem For Linux (WSL 2) to set up a build host using Windows 10 or later, Windows Server 2019 or later. See the Setting Up to Use Windows Subsystem For Linux (WSL 2) section in the Yocto Project Development Tasks Manual for more information.

如果您想了解有关 Yocto 项目的更多概念或背景信息,请参阅《Yocto 项目概述和概念手册》。

If you want more conceptual or background information on the Yocto Project, see the Yocto Project Overview and Concepts Manual.

Compatible Linux Distribution (兼容的 Linux 发行版)

确保你的构建主机满足以下要求:

  • 至少 90 Gbytes 的可用磁盘空间,当然更多空间有助于运行多个构建,并通过重复使用构建工件来提高性能。

  • 至少 8 Gbytes 内存,但强烈建议使用具有尽可能多内存和 CPU 内核的现代构建主机,以最大限度地提高构建性能。

  • 运行受支持的 Linux 发行版(即 Fedora、openSUSE、CentOS、Debian 或 Ubuntu 的最新版本)。有关支持 Yocto 项目的 Linux 发行版列表,请参阅《Yocto 项目参考手册》中的 "支持的 Linux 发行版 "部分。有关准备构建主机的详细信息,请参阅《Yocto 项目开发任务手册》中的 "准备构建主机 "部分。

  • Git 1.8.3.1 或更高版本

    tar 1.28 或更高版本

    Python 3.8.0 或更高版本。

    gcc 8.0 或更高版本

    GNU make 4.0 或更高版本

Make sure your Build Host meets the following requirements:

* At least 90 Gbytes of free disk space, though much more will help to run multiple builds and increase performance by reusing build artifacts.

* At least 8 Gbytes of RAM, though a modern modern build host with as much RAM and as many CPU cores as possible is strongly recommended to maximize build performance.

* Runs a supported Linux distribution (i.e. recent releases of Fedora, openSUSE, CentOS, Debian, or Ubuntu). For a list of Linux distributions that support the Yocto Project, see the Supported Linux Distributions section in the Yocto Project Reference Manual. For detailed information on preparing your build host, see the Preparing the Build Host section in the Yocto Project Development Tasks Manual.

    * Git 1.8.3.1 or greater

    * tar 1.28 or greater

    * Python 3.8.0 or greater.

    * gcc 8.0 or greater.

    * GNU make 4.0 or greater

如果你的构建主机不符合上述三个版本要求中的任何一个,你可以采取措施准备系统,以便仍然可以使用 Yocto 项目。有关信息,请参阅《Yocto 项目参考手册》中的 "所需的 Git、tar、Python、make 和 gcc 版本 "部分。

If your build host does not meet any of these three listed version requirements, you can take steps to prepare the system so that you can still use the Yocto Project. See the Required Git, tar, Python, make and gcc Versions section in the Yocto Project Reference Manual for information.

Build Host Packages (构建主机软件包)

您必须在构建主机上安装必要的主机软件包。以下命令将安装基于 Ubuntu 发行版的主机软件包:

You must install essential host packages on your build host. The following command installs the host packages based on an Ubuntu distribution:

$ sudo apt install gawk wget git diffstat unzip texinfo gcc build-essential chrpath socat cpio python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev python3-subunit mesa-common-dev zstd liblz4-tool file locales libacl1

$ sudo locale-gen en_US.UTF-8

注意

有关所有受支持 Linux 发行版的主机软件包要求,请参阅《Yocto 项目参考手册》中的 "构建主机所需软件包 "部分。

Note

For host package requirements on all supported Linux distributions, see the Required Packages for the Build Host section in the Yocto Project Reference Manual.

Use Git to Clone Poky 

完成机器设置操作后,您需要在构建主机上获取 Poky 仓库的副本。使用以下命令克隆 Poky 仓库。

Once you complete the setup instructions for your machine, you need to get a copy of the Poky repository on your build host. Use the following commands to clone the Poky repository.

$ git clone git://git.yoctoproject.org/poky

Cloning into 'poky'...

remote: Counting

objects: 432160, done. remote: Compressing objects: 100%

(102056/102056), done. remote: Total 432160 (delta 323116), reused

432037 (delta 323000) Receiving objects: 100% (432160/432160), 153.81 MiB | 8.54 MiB/s, done.

Resolving deltas: 100% (323116/323116), done.

Checking connectivity... done.

进入 Releases wiki 页面,选择与最新稳定版或长期支持版相对应的版本代号(如 nanbield)。 (Releases - Yocto Project)

然后移动到 poky 目录,查看现有分支:

Go to Releases wiki page, and choose a release codename (such as nanbield), corresponding to either the latest stable release or a Long Term Support release.

Then move to the poky directory and take a look at existing branches:

$ cd poky

$ git branch -a

.

.

.

remotes/origin/HEAD -> origin/master

remotes/origin/dunfell

remotes/origin/dunfell-next

.

.

.

remotes/origin/gatesgarth

remotes/origin/gatesgarth-next

.

.

.

remotes/origin/master

remotes/origin/master-next

.

.

.

在本例中,请查看基于 Nanbield 版本的 nanbield 分支:

For this example, check out the nanbield branch based on the Nanbield release:

$ git checkout -t origin/nanbield -b my-nanbield

Branch 'my-nanbield' set up to track remote branch 'nanbield' from 'origin'.

Switched to a new branch 'my-nanbield'

前面的 Git 签出命令创建了一个名为 my-nanbield 的本地分支。该分支中的文件与 nanbield 发布分支中的版本库文件完全一致。

注意,你可以定期在同一目录下输入以下命令,以保持本地文件与发布分支同步:

The previous Git checkout command creates a local branch named my-nanbield. The files available to you in that branch exactly match the repository’s files in the nanbield release branch.

Note that you can regularly type the following command in the same directory to keep your local files in sync with the release branch:

$ git pull

有关访问 Yocto Project 相关软件源的更多选项和信息,请参阅《Yocto Project 开发任务手册》中的 "查找 Yocto Project 源文件 "部分。

For more options and information about accessing Yocto Project related repositories, see the Locating Yocto Project Source Files section in the Yocto Project Development Tasks Manual.

Building Your Image (构建你的镜像)

使用以下步骤构建映像。构建过程将从源代码创建整个 Linux 发行版,包括工具链。

注意事项

  • 如果您在防火墙后工作,且您的构建主机未设置代理,则在获取源代码时可能会遇到构建过程问题(如获取失败或 Git 失败)。

  • 如果不知道代理设置,请查阅本地网络基础设施资源并获取相关信息。检查网络浏览器设置也是一个很好的起点。最后,你可以在 Yocto 项目 Wiki 的 "在网络代理后面工作 "页面找到更多信息。

Use the following steps to build your image. The build process creates an entire Linux distribution, including the toolchain, from source.

Note

* If you are working behind a firewall and your build host is not set up for proxies, you could encounter problems with the build process when fetching source code (e.g. fetcher failures or Git failures).

* If you do not know your proxy settings, consult your local network infrastructure resources and get that information. A good starting point could also be to check your web browser settings. Finally, you can find more information on the “Working Behind a Network Proxy” page of the Yocto Project Wiki.

1,初始化构建环境: 在 poky 目录中运行 oe-init-build-env 环境设置脚本,在构建主机上定义 Yocto Project 的构建环境。

1, Initialize the Build Environment: From within the poky directory, run the oe-init-build-env environment setup script to define Yocto Project’s build environment on your build host.

$ cd poky

$ source oe-init-build-env

You had no conf/local.conf file. This configuration file has therefore been

created for you with some default values. You may wish to edit it to, for

example, select a different MACHINE (target hardware). See conf/local.conf

for more information as common configuration options are commented.

You had no conf/bblayers.conf file. This configuration file has therefore

been created for you with some default values. To add additional metadata

layers into your configuration please add entries to conf/bblayers.conf.

The Yocto Project has extensive documentation about OE including a reference

manual which can be found at:

    https://docs.yoctoproject.org

For more information about OpenEmbedded see their website:

    https://www.openembedded.org/

### Shell environment set up for builds. ###

You can now run 'bitbake <target>'

Common targets are:

    core-image-minimal

    core-image-full-cmdline

    core-image-sato

    core-image-weston

    meta-toolchain

    meta-ide-support

You can also run generated QEMU images with a command like 'runqemu qemux86-64'

Other commonly useful commands are:

- 'devtool' and 'recipetool' handle common recipe tasks

- 'bitbake-layers' handles common layer tasks

- 'oe-pkgdata-util' handles common target package tasks

其他方面,脚本还会创建构建目录,本例中的构建目录位于源代码目录中。脚本运行后,当前工作目录将被设置为 "构建目录"。之后,当编译完成时,编译目录将包含编译过程中创建的所有文件。

Among other things, the script creates the Build Directory, which is build in this case and is located in the Source Directory. After the script runs, your current working directory is set to the Build Directory. Later, when the build completes, the Build Directory contains all the files created during the build.

2,检查本地配置文件:设置联编环境时,联编目录的 conf 子目录中会出现一个名为 local.conf 的本地配置文件。在本例中,默认设置是为适合仿真的 qemux86 目标机构建。使用的软件包管理器设置为 RPM 软件包管理器。

2, Examine Your Local Configuration File: When you set up the build environment, a local configuration file named local.conf becomes available in a conf subdirectory of the Build Directory. For this example, the defaults are set to build for a qemux86 target, which is suitable for emulation. The package manager used is set to the RPM package manager.

提示

使用共享状态缓存镜像并启用哈希等价,可以大大加快构建速度并防止取件失败。这样,您就可以使用预构建的工件,而无需构建它们。只有当你的网络和你使用的服务器下载这些工件的速度比你构建它们的速度更快时,这才有意义。

要使用此类镜像,请在构建目录下的 conf/local.conf 文件中取消注释以下几行:

Tip

You can significantly speed up your build and guard against fetcher failures by using Shared State Cache mirrors and enabling Hash Equivalence. This way, you can use pre-built artifacts rather than building them. This is relevant only when your network and the server that you use can download these artifacts faster than you would be able to build them.

To use such mirrors, uncomment the below lines in your conf/local.conf file in the Build Directory:

BB_HASHSERVE_UPSTREAM = "hashserv.yocto.io:8687"

SSTATE_MIRRORS ?= "file://.* http://cdn.jsdelivr.net/yocto/sstate/all/PATH;downloadfilename=PATH"

BB_HASHSERVE = "auto"

BB_SIGNATURE_HANDLER = "OEEquivHash"

3,开始构建: 继续执行以下命令,为目标(本例中为 core-image-sato)构建操作系统镜像:

3, Start the Build: Continue with the following command to build an OS image for the target, which is core-image-sato in this example:

有关使用 bitbake 命令的信息,请参阅《Yocto 项目概述和概念手册》中的 BitBake 章节,或《BitBake 用户手册》中的 BitBake 命令。

$ bitbake core-image-sato

For information on using the bitbake command, see the BitBake section in the Yocto Project Overview and Concepts Manual, or see The BitBake Command in the BitBake User Manual.

4,使用 QEMU 模拟镜像:构建好特定镜像后,就可以启动 QEMU,它是 Yocto 项目随附的快速 EMUlator:

4, Simulate Your Image Using QEMU: Once this particular image is built, you can start QEMU, which is a Quick EMUlator that ships with the Yocto Project:

$ runqemu qemux86-64

如果想了解运行 QEMU 的更多信息,请参阅《Yocto 项目开发任务手册》中的 "使用快速 EMUlator (QEMU)" 章节。

If you want to learn more about running QEMU, see the Using the Quick EMUlator (QEMU) chapter in the Yocto Project Development Tasks Manual.

5,退出 QEMU:单击关机图标或在唤起 QEMU 的 QEMU 记录窗口中键入 Ctrl-C 即可退出 QEMU。

5, Exit QEMU: Exit QEMU by either clicking on the shutdown icon or by typing Ctrl-C in the QEMU transcript window from which you evoked QEMU.

Customizing Your Build for Specific Hardware ( 为指定硬件定制构建)

到目前为止,你所做的只是快速构建了一个仅适用于仿真的映像。本节将向你展示如何通过在 Yocto Project 开发环境中添加硬件层来定制特定硬件的构建。

一般来说,层是包含相关指令集和配置的资源库,这些指令集和配置会告诉 Yocto Project 要做什么。将相关元数据隔离到功能特定的层中有利于模块化开发,并使层元数据的重用更加容易。

So far, all you have done is quickly built an image suitable for emulation only. This section shows you how to customize your build for specific hardware by adding a hardware layer into the Yocto Project development environment.

In general, layers are repositories that contain related sets of instructions and configurations that tell the Yocto Project what to do. Isolating related metadata into functionally specific layers facilitates modular development and makes it easier to reuse the layer metadata.

注释

按照惯例,层名称以字符串 "meta-"开头。

Note

By convention, layer names start with the string “meta-“.

请按照以下步骤添加硬件层:

  1. 查找层: 有许多硬件层可用。Yocto Project 源代码库中有许多硬件层。本例添加了meta-altera硬件层。

  2. 克隆层: 使用 Git 在你的机器上复制一个硬件层。你可以将该副本放在之前创建的 Poky 仓库副本的顶层:

Follow these steps to add a hardware layer:

1. Find a Layer: Many hardware layers are available. The Yocto Project Source Repositories has many hardware layers. This example adds the meta-altera hardware layer.

2. Clone the Layer: Use Git to make a local copy of the layer on your machine. You can put the copy in the top level of the copy of the Poky repository created earlier:

$ cd poky

$ git clone https://github.com/kraj/meta-altera.git

Cloning into 'meta-altera'...

remote: Counting objects: 25170, done.

remote: Compressing objects: 100% (350/350), done.

remote: Total 25170 (delta 645), reused 719 (delta 538), pack-reused 24219

Receiving objects: 100% (25170/25170), 41.02 MiB | 1.64 MiB/s, done.

Resolving deltas: 100% (13385/13385), done.

Checking connectivity... done.

硬件层现在可以在构建主机上的 Poky 参考资源库中作为 meta-altera 与其他层一起使用,其中包含支持英特尔旗下 Altera 硬件所需的所有元数据。

注意事项

建议每个 Yocto 项目版本的层都有一个分支。请确保签出支持你正在使用的 Yocto 项目版本的层分支。

The hardware layer is now available next to other layers inside the Poky reference repository on your build host as meta-altera and contains all the metadata needed to support hardware from Altera, which is owned by Intel.

Note

It is recommended for layers to have a branch per Yocto Project release. Please make sure to checkout the layer branch supporting the Yocto Project release you’re using.

  1. 改配置,为特定机器构建: local.conf 文件中的 MACHINE 变量指定了用于编译的机器。在本例中,将 MACHINE 变量设置为 cyclone5。使用这些配置:https://github.com/kraj/meta-altera/blob/master/conf/machine/cyclone5.conf。

注意

有关配置编译的更多信息,请参阅前面的 "检查本地配置文件 "步骤。

3. Change the Configuration to Build for a Specific Machine: The MACHINE variable in the local.conf file specifies the machine for the build. For this example, set the MACHINE variable to cyclone5. These configurations are used: https://github.com/kraj/meta-altera/blob/master/conf/machine/cyclone5.conf.

Note

See the “Examine Your Local Configuration File” step earlier for more information on configuring the build.

  1. 将层添加到层配置文件中:在构建过程中使用层之前,必须将其添加到 bblayers.conf 文件中,该文件位于构建目录 conf 目录中。

使用 bitbake-layers add-layer 命令将层添加到配置文件中:

4. Add Your Layer to the Layer Configuration File: Before you can use a layer during a build, you must add it to your bblayers.conf file, which is found in the Build Directory conf directory.

Use the bitbake-layers add-layer command to add the layer to the configuration file:

$ cd poky/build

$ bitbake-layers add-layer ../meta-altera

NOTE: Starting bitbake server...

Parsing recipes: 100% |##################################################################| Time: 0:00:32

Parsing of 918 .bb files complete (0 cached, 918 parsed). 1401 targets,

123 skipped, 0 masked, 0 errors.

有关添加图层的更多信息,请参阅 "使用 bitbake-layers 脚本添加层 "部分。

You can find more information on adding layers in the Adding a Layer Using the bitbake-layers Script section.

完成这些步骤后,您的 Yocto Project 开发环境中就添加了 meta-altera 层,并将其配置为在 cyclone5 机器上构建。

注意

前面的步骤仅供演示。如果您尝试为 cyclone5 机器构建镜像,请阅读 Altera README。

Completing these steps has added the meta-altera layer to your Yocto Project development environment and configured it to build for the cyclone5 machine.

Note

The previous steps are for demonstration purposes only. If you were to attempt to build an image for the cyclone5 machine, you should read the Altera README.

Creating Your Own General Layer (创建你的通用层)

也许你有需要隔离的应用程序或特定行为集。您可以使用 bitbake-layers create-layer 命令创建自己的通用层。该工具通过设置一个包含 layer.conf 配置文件的子目录、一个包含 example.bb 配方的 recipes-example 子目录、一个许可文件和一个 README 来自动创建层。

以下命令将运行该工具,在 poky 目录中创建名为 meta-mylayer 的图层:

Maybe you have an application or specific set of behaviors you need to isolate. You can create your own general layer using the bitbake-layers create-layer command. The tool automates layer creation by setting up a subdirectory with a layer.conf configuration file, a recipes-example subdirectory that contains an example.bb recipe, a licensing file, and a README.

The following commands run the tool to create a layer named meta-mylayer in the poky directory:

$ cd poky

$ bitbake-layers create-layer meta-mylayer

NOTE: Starting bitbake server...

Add your new layer with 'bitbake-layers add-layer meta-mylayer'

有关层以及如何创建层的更多信息,请参阅《Yocto 项目开发任务手册》中的 "使用 bitbake-layers 脚本创建常规层 "一节。

For more information on layers and how to create them, see the Creating a General Layer Using the bitbake-layers Script section in the Yocto Project Development Tasks Manual.

Where To Go Next (下一步)

既然你已经体验过使用 Yocto 项目,你可能会问自己 "现在怎么办?Yocto 项目有许多信息来源,包括网站、维基页面和用户手册:

Now that you have experienced using the Yocto Project, you might be asking yourself “What now?”. The Yocto Project has many sources of information including the website, wiki pages, and user manuals:

  • 网站: Yocto 项目网站提供背景信息、最新版本、重大新闻、完整的开发文档,以及丰富的 Yocto 项目开发社区。

    The Yocto Project

  • 视频研讨会: Yocto 项目和 BitBake 简介,第 1 部分和 Yocto 项目和 BitBake 简介,第 2 部分视频提供了一个视频研讨会,向您介绍使用 Yocto 项目开发定制嵌入式 Linux 发行版的最重要方面。

    https://youtu.be/yuE7my3KOpo

    https://youtu.be/iZ05TTyzGHk

  • Yocto 项目概述与概念手册: Yocto 项目概述与概念手册》是了解 Yocto 项目的绝佳入门读物。本手册向你介绍 Yocto 项目及其开发环境。手册还提供了有关 Yocto 项目各个方面的概念信息。

    Yocto Project Overview and Concepts Manual — The Yocto Project ® 4.3.999 documentation

  • Yocto 项目维基: Yocto 项目维基提供了更多信息,包括 Yocto 项目的下一步计划、发布信息、项目规划和 QA 信息。

    Yocto Project

  • Yocto 项目邮件列表: 相关邮件列表为讨论、补丁提交和公告提供了一个论坛。有多个按主题分组的邮件列表。有关 Yocto 项目邮件列表的完整列表,请参阅《Yocto 项目参考手册》中的邮件列表部分。

  • 链接和其他文档的综合列表: Yocto 项目参考手册》中的 "链接和相关文档 "部分提供了所有相关链接和其他用户文档的完整列表。

    15 Contributions and Additional Information — The Yocto Project ® 4.3.999 documentation

* Website: The Yocto Project Website provides background information, the latest builds, breaking news, full development documentation, and access to a rich Yocto Project Development Community into which you can tap.

* Video Seminar: The Introduction to the Yocto Project and BitBake, Part 1 and Introduction to the Yocto Project and BitBake, Part 2 videos offer a video seminar introducing you to the most important aspects of developing a custom embedded Linux distribution with the Yocto Project.

* Yocto Project Overview and Concepts Manual: The Yocto Project Overview and Concepts Manual is a great place to start to learn about the Yocto Project. This manual introduces you to the Yocto Project and its development environment. The manual also provides conceptual information for various aspects of the Yocto Project.

* Yocto Project Wiki: The Yocto Project Wiki provides additional information on where to go next when ramping up with the Yocto Project, release information, project planning, and QA information.

* Yocto Project Mailing Lists: Related mailing lists provide a forum for discussion, patch submission and announcements. There are several mailing lists grouped by topic. See the Mailing lists section in the Yocto Project Reference Manual for a complete list of Yocto Project mailing lists.

* Comprehensive List of Links and Other Documentation: The Links and Related Documentation section in the Yocto Project Reference Manual provides a comprehensive list of all related links and other user documentation.

Original from:

Yocto Project Quick Build — The Yocto Project ® 4.3.999 documentation

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/733770.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Diddler抓包工具——学习笔记

F12抓包 302【重定向】&#xff1a;当你发送了一个请求之后&#xff0c;那么这个请求重定向到了另外的资源 跳转和重定向的区别&#xff1a; 跳转是会把数据传到新的地址 重定向不会把新的数据传到新的地址 使用F12抓包时一定要打开Preserve Log开关&#xff0c;作用是保留…

c#开发100问?

什么是C#&#xff1f;C#是由谁开发的&#xff1f;C#与Java之间有哪些相似之处&#xff1f;C#与C有哪些不同之处&#xff1f;C#的主要特性是什么&#xff1f;请解释C#中的类和对象。C#中的命名空间是什么&#xff1f;什么是C#中的属性和字段&#xff1f;请解释C#中的继承和多态性…

万用表数据导出变化曲线图——pycharm实现视频数据导出变化曲线图

万用表数据导出变化曲线图——pycharm实现视频数据导出变化曲线图 一、效果展示二、环境配置三、代码构思四、代码展示五、代码、python环境包链接 一、效果展示 图1.1 效果展示 &#xff08;左图&#xff1a;万用表视频截图&#xff1b;右图&#xff1a;表中数据变化曲线图&am…

Springboot整合Mybaits启动过程

Springboot整合Mybaits启动过程 1.前言2.MybatisAutoConfiguration3.SqlSessionFactoryBean3.1 XMLConfigBuilder.parse()3.1.1 XMLMapperBuilder.parse()3.1.1.1 XMLStatementBuilder.parse() 4.SqlSession4.1 Executor 1.前言 直接加载mybatis配置文件&#xff0c;然后创建S…

Oracle 数据库sysaux表空间

导读 Oracle数据库中的SYSAUX表空间是一个特殊的表空间&#xff0c;它是在Oracle数据库10g版本中引入的。SYSAUX表空间用于存储数据库的辅助系统数据和附加组件数据&#xff0c;旨在减轻System表空间的负担&#xff0c;使得数据库管理更加高效。在本文中&#xff0c;我们将深入…

Matlab|【EI复现】电动汽车集群并网的分布式鲁棒优化调度模型

目录 1 内容简介 2 关键知识点 2.1 三类电动汽车模型 3 程序结果 4 下载链接 1 内容简介 电动汽车的数据模型种类繁多&#xff0c;但是用到比较高阶数学方法的并不多&#xff0c;本次分享的程序是下图所示的文章。 采用分布鲁棒优化模型&#xff0c;用到鲁棒对等转换&…

贪心区间问题(区间选点)

题目 给定 N 个闭区间 [ai,bi]&#xff0c;请你在数轴上选择尽量少的点&#xff0c;使得每个区间内至少包含一个选出的点。 输出选择的点的最小数量。 位于区间端点上的点也算作区间内。 输入格式 第一行包含整数 N&#xff0c;表示区间数。 接下来 N 行&#xff0c;每行…

开发指南002-前后端信息交互规范-请求类

请求类由org.qlm.io.vo.RequestInfo定义&#xff1a;//1.0 Schema(description "平台-请求包版本标识 用于版本兼容") private String version;Schema(description "平台-请求者") private String consumer;//请求者 标识发出请求的系统Schema(descripti…

MyBatis3源码深度解析(七)JDBC单连接事务

文章目录 前言2.7 JDBC单连接事务2.7.1 事务的开启与提交2.7.2 事务隔离级别2.7.2.1 并发访问问题&#xff08;1&#xff09;脏读&#xff08;2&#xff09;不可重复读&#xff08;3&#xff09;幻读 2.7.2.2 事务隔离级别&#xff08;1&#xff09;TRANSACTION_NONE&#xff1…

BJFU|计算机网络期末复习考前速记

整理了一些重要名词的定义与概念&#xff0c;适合在考前几个小时过几次加深印象&#xff0c;可以更好应对选填与简答的题型。 互联网的定义&#xff1a;广义观点-远程信息处理进一步达到资源共享&#xff1b;资源共享观点-以相互共享资源的方式互联起来的自治计算机系统的集合…

百度信息流

计划: 流量选择 - 四个维度: 百度信息流 ; 整合了百度APP、WAP、PC各频道信息流和内容详情页的流量资源,广告和信息流内容资讯穿插展现;适合所有产品呢 好看视频; 汇集海量优质的视频内容,通过智能推荐算法为用户推送最适合的视频广告,视频广告在列表页有声…

【故障分类】基于注意力机制的卷积神经网络结合双向长短记忆神经网络CNN-BiLSTM-attention实现数据分类附matlab代码

摘要&#xff1a; 本文详细介绍了一种基于注意力机制的卷积神经网络(CNN)结合双向长短记忆神经网络(BiLSTM)实现数据分类的方法&#xff0c;并给出了详细的Matlab实现代码。本文首先概述了CNN、BiLSTM和注意力机制的基本原理&#xff0c;然后阐述了整体网络结构的设计思路&…

ChatGPT 串接到 Discord - 团队协作好助理

ChatGPT 串接到 Discord - 团队协作好助理 ChatGPT 是由 OpenAI 开发的一个强大的语言模型&#xff0c;本篇文章教你如何串接 Discord Bot &#xff0c;协助团队在工作上更加高效并促进沟通与协作。使 ChatGPT 发挥出最大的功效&#xff0c;进一步提升工作效率和团队协作能力。…

Redis 内存的优化

目录 前言 Redis 的内存碎片问题 判断Redis 内存碎片 如何清理内存碎片&#xff1f; 前言 我想讲一下怎么提高Redis 内存的利用率&#xff0c;redis 的数据是保存在内存中。对内存的利用率低&#xff0c;意味着存的数据很少&#xff0c;并不意味着就没有内存了&#xff0c…

【解读】OWASP大语言模型应用程序十大风险

OWASP大型语言模型应用程序前十名项目旨在教育开发人员、设计师、架构师、经理和组织在部署和管理大型语言模型&#xff08;LLM&#xff09;时的潜在安全风险。该项目提供了LLM应用程序中常见的十大最关键漏洞的列表&#xff0c;强调了它们的潜在影响、易利用性和在现实应用程序…

利用华为CodeArts持续交付项目演示流程

软件开发生产线&#xff08;CodeArts&#xff09;是面向开发者提供的一站式云端平台&#xff0c;即开即用&#xff0c;随时随地在云端交付软件全生命周期&#xff0c;覆盖需求下发、代码提交、代码检查、代码编译、验证、部署、发布&#xff0c;打通软件交付的完整路径&#xf…

力扣---腐烂的橘子

题目&#xff1a; bfs思路&#xff1a; 感觉bfs还是很容易想到的&#xff0c;首先定义一个双端队列&#xff08;队列也是可以的~&#xff09;&#xff0c;如果值为2&#xff0c;则入队列&#xff0c;我这里将队列中的元素定义为pair<int,int>。第一个int记录在数组中的位…

3.8IO作业

1&#xff1a;编写链表&#xff0c;链表里面随便搞点数据 使用 fprintf 将链表中所有的数据&#xff0c;保存到文件中 使用 fscanf 读取文件中的数据&#xff0c;写入链表中&#xff0c;实现&#xff0c;当按 ctrl c的时候&#xff0c;保存链表 #include <stdio.h> #in…

day15_集合_ArrayList

今日内容 零、 复习昨日 一、集合框架体系 二、Collection 三、泛型 四、迭代 五、List(ArrayList、LinkedList) 零、 复习昨日 日期解析的方法签名(字符串–>日期) Date parse(String s) 日期格式化的方法签名(日期–>字符串) String format(Date date) 运行时异常有哪些…

19、电源管理入门之微内核中的电源管理

目录 1. QNX电源管理框架 2. QNX客户端API库 3. QNX代码分析 4. Fuchsia中的电源管理 5. Minix中的电源管理 6. Harmony OS中的电源管理 之前介绍的电源管理机制基本都是在Linux中实现的,可以看到很复杂,各种框架,明明一个操作非要转来转去,而且在内核里面实现,跟内…