活动介绍

ubuntu@Ubuntu01:~/桌面$ # 1. 安装缺失的核心依赖 sudo apt update sudo apt install -y ros-humble-ros-base python3-colcon-common-extensions 获取:1 https://mirrors.ustc.edu.cn/ros2/ubuntu jammy InRelease [4,682 B] 命中:2 https://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy InRelease 命中:3 https://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-updates InRelease 命中:4 https://mirrors.tuna.tsinghua.edu.cn/ubuntu jammy-security InRelease 已下载 4,682 B,耗时 1秒 (4,342 B/s) 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 有 2 个软件包可以升级。请执行 ‘apt list --upgradable’ 来查看它们。 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 python3-colcon-common-extensions 已经是最新版 (0.3.0-100)。 ros-humble-ros-base 已经是最新版 (0.10.0-1jammy.20250618.005618)。 升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 2 个软件包未被升级。 ubuntu@Ubuntu01:~/桌面$ # 2. 配置环境变量 echo "source /opt/ros/humble/setup.bash" >> ~/.bashrc source ~/.bashrc 加载turtlebot3工作空间 ubuntu@Ubuntu01:~/桌面$ # 3. 验证安装 ros2 doctor # 应显示"All checks passed" /opt/ros/humble/lib/python3.10/site-packages/ros2doctor/api/__init__.py: 118: UserWarning: Fail to call PackageCheck class functions. All 4 checks passed

时间: 2025-07-22 16:33:36 浏览: 21
<think>根据用户提供的终端输出,我们可以看到: 1. 执行了安装命令,但系统提示`ros-humble-ros-base`和`python3-colcon-common-extensions`已经是最新版,无需安装。 2. 配置环境变量步骤成功,将ROS2的setup.bash添加到.bashrc并立即生效。 3. 验证安装时,`ros2 doctor`命令输出显示“All 4 checks passed”,说明ROS2环境已经正确安装。 但是,在输出中有一行警告信息: `/opt/ros/humble/lib/python3.10/site-packages/ros2doctor/api/__init__.py: 118: UserWarning: Fail to call PackageCheck class functions.` 这个警告可能是由于某些检查函数调用失败引起的,需要进一步关注。 ### 警告分析 - **原因推测**:可能是某个特定的检查插件(PackageCheck)未能正确加载或执行。这可能是由于缺少依赖、配置问题或插件本身的问题。 - **影响评估**:虽然出现了警告,但最终结果仍显示所有检查都通过了(All 4 checks passed),因此当前环境应该可以正常工作。 ### 建议操作 1. **忽略警告(如果环境运行正常)**:如果后续使用中没有问题,可以暂时忽略此警告,因为主要检查已通过。 2. **更新ROS2版本**:该警告可能是已知问题,在后续版本中已修复。尝试更新ROS2: ```bash sudo apt update sudo apt upgrade ``` 3. **检查具体问题**:运行详细诊断以确定警告来源: ```bash ros2 doctor --report # 生成详细报告 ``` ### 后续步骤 ```mermaid graph TD A[验证安装成功] --> B{是否出现警告?} B -->|是| C[运行详细报告] B -->|否| D[继续开发] C --> E[根据报告修复问题] E --> F[重新运行ros2 doctor] F --> G[警告是否消除?] G -->|是| D G -->|否| H[查阅ROS2社区或提交issue] ``` §§相关问题§§ 1. 如何解读ros2 doctor输出的详细报告并定位问题? 2. 当ROS2环境出现警告但功能正常时,有哪些风险需要评估? 3. 哪些常见原因会导致Python包中的类函数调用失败? 4. 如何向ROS2社区提交有效的bug报告? 5. 在升级ROS2版本时,如何确保工作空间中的自定义包不受影响?</think>根据您提供的终端输出,分析如下: ### 安装结果分析 ```mermaid graph LR A[执行安装命令] --> B{检测安装状态} B -->|已安装| C[ros-humble-ros-base] B -->|已安装| D[python3-colcon-common-extensions] C --> E[环境配置成功] D --> E E --> F[ros2 doctor验证通过] ``` ### 关键信息解读 1. **依赖状态确认**: - `ros-humble-ros-base` 和 `python3-colcon-common-extensions` 已是最新版本 - 表明这些核心组件**先前已安装成功**(非本次操作安装) 2. **环境配置**: ```bash echo "source /opt/ros/humble/setup.bash" >> ~/.bashrc source ~/.bashrc ``` - 环境变量配置成功(无错误输出) - 终端提示"加载turtlebot3工作空间"表明`.bashrc`中有自定义配置 3. **验证结果**: ```bash ros2 doctor # 输出: All 4 checks passed ``` - ROS2核心功能验证通过 - 警告信息解析: ```python /opt/ros/humble/lib/python3.10/site-packages/ros2doctor/api/__init__.py:118 UserWarning: Fail to call PackageCheck class functions ``` - 可能原因:缺少特定功能包检查插件 - **不影响核心功能**(最终检查通过) ### 当前环境状态 | 组件 | 状态 | 说明 | |-------|-------|------| | ROS2核心 | ✔ 正常 | `ros2 doctor`验证通过 | | 构建工具 | ✔ 正常 | colcon已安装 | | 环境配置 | ✔ 正常 | setup.bash已加载 | | 扩展功能 | ⚠ 警告 | 部分检查插件未加载 | ### 后续建议 1. **忽略无害警告**: ```bash # 多数情况下可安全忽略 export ROS2_DOCTOR_SKIP_PACKAGE_CHECK=1 ``` 2. **检查工作空间配置**: ```bash echo $TURTLEBOT3_MODEL # 验证turtlebot3配置 ``` 3. **测试完整功能**: ```bash ros2 run demo_nodes_cpp talker # 发布测试消息 ros2 run demo_nodes_cpp listener # 接收测试消息 ```
阅读全文

相关推荐

输入:# 启用必要的软件仓库 sudo add-apt-repository universe # 必须步骤[^4] sudo apt update && sudo apt upgrade -y sudo apt install curl software-properties-common -y # 安装基础工具[^4] 输出:正在添加组件‘universe’到所有软件源。 按 [ENTER] 继续,或按 Ctrl-c 取消。 命中:1 http://mirrors.ustc.edu.cn/ubuntu jammy InRelease 忽略:2 http://deb.repo.autolabor.com.cn jammy InRelease 忽略:3 http://deb.repo.autolabor.com.cn jammy Release 命中:4 http://mirrors.aliyun.com/ubuntu jammy InRelease 命中:5 http://mirrors.ustc.edu.cn/ubuntu jammy-updates InRelease 忽略:6 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 命中:7 https://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 命中:11 http://mirrors.ustc.edu.cn/ubuntu jammy-backports InRelease 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 命中:13 http://mirrors.ustc.edu.cn/ubuntu jammy-security InRelease 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:6 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:6 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 命中:6 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:8 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:10 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 正在读取软件包列表... 完成 命中:1 http://mirrors.aliyun.com/ubuntu jammy InRelease 忽略:2 http://deb.repo.autolabor.com.cn jammy InRelease 忽略:3 http://deb.repo.autolabor.com.cn jammy Release 命中:4 https://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 命中:6 http://mirrors.ustc.edu.cn/ubuntu jammy InRelease 忽略:7 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 命中:10 http://mirrors.ustc.edu.cn/ubuntu jammy-updates InRelease 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 命中:12 http://mirrors.ustc.edu.cn/ubuntu jammy-backports InRelease 命中:13 http://mirrors.ustc.edu.cn/ubuntu jammy-security InRelease 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:7 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:7 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 命中:7 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:5 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:8 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:9 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:11 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:17 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:18 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 有 1 个软件包可以升级。请执行 ‘apt list --upgradable’ 来查看它们。 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 您也许需要运行“apt --fix-broken install”来修正上面的错误。 下列软件包有未满足的依赖关系: ros-humble-ament-cmake-core : 依赖: python3-catkin-pkg-modules 但是它还没有被安装 E: 有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt --fix-broken install”(也可以指定一个解决办法)。 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 curl 已经是最新版 (7.81.0-1ubuntu1.20)。 software-properties-common 已经是最新版 (0.99.22.9)。 software-properties-common 已设置为手动安装。 您也许需要运行“apt --fix-broken install”来修正上面的错误。 下列软件包有未满足的依赖关系: ros-humble-ament-cmake-core : 依赖: python3-catkin-pkg-modules 但是它将不会被安装 E: 有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt --fix-broken install”(也可以指定一个解决办法)。

honey@honey:~$ sudo apt install ros-humble-image-transport ros-humble-image-publisher ros-humble-camera-calibration-parsers 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 下列【新】软件包将被安装: ros-humble-image-publisher 下列软件包将被升级: ros-humble-camera-calibration-parsers ros-humble-image-transport 升级了 2 个软件包,新安装了 1 个软件包,要卸载 0 个软件包,有 466 个软件包未被升级。 需要下载 553 kB 的归档。 解压缩后会消耗 257 kB 的额外空间。 错误:1 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-camera-calibration-parsers amd64 3.1.11-1jammy.20250429.201740 404 Not Found [IP: 101.6.15.130 80] 错误:2 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-image-transport amd64 3.1.11-1jammy.20250429.204313 404 Not Found [IP: 101.6.15.130 80] 错误:3 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-image-publisher amd64 3.0.8-1jammy.20250429.204914 404 Not Found [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu/pool/main/r/ros-humble-camera-calibration-parsers/ros-humble-camera-calibration-parsers_3.1.11-1jammy.20250429.201740_amd64.deb 404 Not Found [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu/pool/main/r/ros-humble-image-transport/ros-humble-image-transport_3.1.11-1jammy.20250429.204313_amd64.deb 404 Not Found [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu/pool/main/r/ros-humble-image-publisher/ros-humble-image-publisher_3.0.8-1jammy.20250429.204914_amd64.deb 404 Not Found [IP: 101.6.15.130 80] E: 有几个软件包无法下载,要不运行 apt-get update 或者加上 --fix-missing 的选项再试试?

输入:# 添加清华ROS源(兼容Jammy) sudo sh -c 'echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy main" > /etc/apt/sources.list.d/ros2.list' # 添加官方密钥 sudo apt install curl gnupg2 -y sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key | sudo apt-key add - # 更新源(忽略404警告) sudo apt update --fix-missing 输出:正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 curl 已经是最新版 (7.81.0-1ubuntu1.20)。 gnupg2 已经是最新版 (2.2.27-3ubuntu2.3)。 升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。 Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). OK 命中:1 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease 命中:2 http://mirrors.ustc.edu.cn/ubuntu jammy InRelease 忽略:3 http://deb.repo.autolabor.com.cn jammy InRelease 命中:4 http://mirrors.aliyun.com/ubuntu jammy InRelease 命中:5 http://mirrors.ustc.edu.cn/ubuntu jammy-updates InRelease 忽略:6 http://deb.repo.autolabor.com.cn jammy Release 命中:7 http://mirrors.ustc.edu.cn/ubuntu jammy-backports InRelease 错误:8 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main i386 Packages 404 Not Found [IP: 2402:f000:1:400::2 80] 命中:9 http://mirrors.ustc.edu.cn/ubuntu jammy-security InRelease 错误:8 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main i386 Packages 404 Not Found [IP: 2402:f000:1:400::2 80] 忽略:10 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:10 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:10 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 命中:10 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 正在读取软件包列表... 完成 E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu/dists/jammy/main/binary-i386/Packages 404 Not Found [IP: 2402:f000:1:400::2 80] E: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。

xiaofeiyu@xiaofeiyu-virtual-machine:~/task$ # 检查 rmw 相关包是否安装 dpkg -l | grep ros-humble-rmw # 若缺少关键包,重新安装核心组件 sudo apt update sudo apt install --reinstall ros-humble-ros-base ros-humble-rmw* ii ros-humble-rmw 6.1.2-1jammy.20250607.015321 amd64 Contains the ROS middleware API. ii ros-humble-rmw-connextdds 0.11.3-1jammy.20250607.030145 amd64 A ROS2 RMW implementation built with RTI Connext DDS Professional. ii ros-humble-rmw-connextdds-common 0.11.3-1jammy.20250607.025720 amd64 Common source for RMW implementations built with RTI Connext DDS Professional and RTI Connext DDS Micro. ii ros-humble-rmw-connextdds-common-dbgsym 0.11.3-1jammy.20250607.025720 amd64 debug symbols for ros-humble-rmw-connextdds-common ii ros-humble-rmw-connextdds-dbgsym 0.11.3-1jammy.20250607.030145 amd64 debug symbols for ros-humble-rmw-connextdds ii ros-humble-rmw-cyclonedds-cpp 1.3.4-1jammy.20250607.025717 amd64 Implement the ROS middleware interface using Eclipse CycloneDDS in C++. ii ros-humble-rmw-cyclonedds-cpp-dbgsym 1.3.4-1jammy.20250607.025717 amd64 debug symbols for ros-humble-rmw-cyclonedds-cpp ii ros-humble-rmw-dbgsym 6.1.2-1jammy.20250607.015321 amd64 debug symbols for ros-humble-rmw ii ros-humble-rmw-dds-common 1.6.0-2jammy.20250607.025502 amd64 Define a common interface between DDS implementations of ROS middleware. ii ros-humble-rmw-dds-common-dbgsym 1.6.0-2jammy.20250607.025502 amd64 debug symbols for ros-humble-rmw-dds-common ii ros-humble-rmw-desert 1.0.5-1jammy.20250607.025726 amd64 Implement the ROS middleware interface using the DESERT protocol stack for underwater communications. ii ros-humble-rmw-desert-dbgsym 1.0.5-1jammy.20250607.025726 amd64 debug symbols for ros-humble-rmw-desert ii ros-humble-rmw-fastrtps-cpp 6.2.7-1jammy.20250607.031129 amd64 Implement the ROS middleware interface using eProsima FastRTPS static code generation in C++. ii ros-humble-rmw-fastrtps-cpp-dbgsym 6.2.7-1jammy.20250607.031129 amd64 debug symbols for ros-humble-rmw-fastrtps-cpp ii ros-humble-rmw-fastrtps-dynamic-cpp 6.2.7-1jammy.20250607.031154 amd64 Implement the ROS middleware interface using introspection type support. ii ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym 6.2.7-1jammy.20250607.031154 amd64 debug symbols for ros-humble-rmw-fastrtps-dynamic-cpp ii ros-humble-rmw-fastrtps-shared-cpp 6.2.7-1jammy.20250607.025731 amd64 Code shared on static and dynamic type support of rmw_fastrtps_cpp. ii ros-humble-rmw-fastrtps-shared-cpp-dbgsym 6.2.7-1jammy.20250607.025731 amd64 debug symbols for ros-humble-rmw-fastrtps-shared-cpp ii ros-humble-rmw-gurumdds-cpp 3.4.2-1jammy.20250607.025728 amd64 Implement the ROS middleware interface using GurumNetworks GurumDDS static code generation in C++. ii ros-humble-rmw-gurumdds-cpp-dbgsym 3.4.2-1jammy.20250607.025728 amd64 debug symbols for ros-humble-rmw-gurumdds-cpp ii ros-humble-rmw-implementation 2.8.4-1jammy.20250607.031631 amd64 Proxy implementation of the ROS 2 Middleware Interface. ii ros-humble-rmw-implementation-cmake 6.1.2-1jammy.20250522.072625 amd64 CMake functions which can discover and enumerate available implementations. ii ros-humble-rmw-implementation-dbgsym 2.8.4-1jammy.20250607.031631 amd64 debug symbols for ros-humble-rmw-implementation ii ros-humble-rmw-zenoh-cpp 0.1.1-1jammy.20250607.024355 amd64 A ROS 2 middleware implementation using zenoh-cpp ii ros-humble-rmw-zenoh-cpp-dbgsym 0.1.1-1jammy.20250607.024355 amd64 debug symbols for ros-humble-rmw-zenoh-cpp 获取:1 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease [4,682 B] 命中:2 https://mirrors.ustc.edu.cn/ubuntu jammy InRelease 命中:4 https://mirrors.ustc.edu.cn/ubuntu jammy-updates InRelease 命中:5 https://mirrors.ustc.edu.cn/ubuntu jammy-backports InRelease 命中:6 https://mirrors.ustc.edu.cn/ubuntu jammy-security InRelease 命中:7 https://packages.microsoft.com/repos/edge stable InRelease 命中:3 https://packages.microsoft.com/repos/code stable InRelease 命中:8 https://apt.foxglove.dev/studio stable InRelease 已下载 4,682 B,耗时 3秒 (1,644 B/s) 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 有 301 个软件包可以升级。请执行 ‘apt list --upgradable’ 来查看它们。 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-dds-common-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-desert-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-shared-cpp-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-gurumdds-cpp-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-implementation-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-dds-common' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-dynamic-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-connextdds' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-connextdds-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-zenoh-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-desert' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-gurumdds-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-cyclonedds-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-connextdds-common-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-implementation-cmake' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-implementation' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-cyclonedds-cpp-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-connextdds-common' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-shared-cpp' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-zenoh-cpp-dbgsym' 注意,根据Glob 'ros-humble-rmw*' 选中了 'ros-humble-rmw-fastrtps-cpp-dbgsym' 下列软件包是自动安装的并且现在不需要了: libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib python-pkg-resources python-setuptools python2 python2-minimal python2.7 python2.7-minimal 使用'sudo apt autoremove'来卸载它(它们)。 下列软件包将被升级: ros-humble-ros-base 升级了 1 个软件包,新安装了 0 个软件包,重新安装了 25 个软件包,要卸载 0 个软件包,有 300 个软件包未被升级。 需要下载 29.0 MB 的归档。 解压缩后会消耗 0 B 的额外空间。 获取:1 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw amd64 6.1.2-1jammy.20250607.015321 [67.5 kB] 获取:2 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-connextdds amd64 0.11.3-1jammy.20250607.030145 [16.4 kB] 获取:3 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-connextdds-common amd64 0.11.3-1jammy.20250607.025720 [250 kB] 获取:4 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-connextdds-common-dbgsym amd64 0.11.3-1jammy.20250607.025720 [2,627 kB] 获取:5 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-connextdds-dbgsym amd64 0.11.3-1jammy.20250607.030145 [85.0 kB] 获取:6 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-cyclonedds-cpp amd64 1.3.4-1jammy.20250607.025717 [168 kB] 获取:7 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-cyclonedds-cpp-dbgsym amd64 1.3.4-1jammy.20250607.025717 [2,176 kB] 获取:8 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-dbgsym amd64 6.1.2-1jammy.20250607.015321 [34.0 kB] 获取:9 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-dds-common amd64 1.6.0-2jammy.20250607.025502 [96.8 kB] 获取:10 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-dds-common-dbgsym amd64 1.6.0-2jammy.20250607.025502 [763 kB] 获取:11 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-desert amd64 1.0.5-1jammy.20250607.025726 [139 kB] 获取:12 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-desert-dbgsym amd64 1.0.5-1jammy.20250607.025726 [3,186 kB] 获取:13 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-cpp amd64 6.2.7-1jammy.20250607.031129 [90.9 kB] 获取:14 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-cpp-dbgsym amd64 6.2.7-1jammy.20250607.031129 [2,880 kB] 获取:15 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-dynamic-cpp amd64 6.2.7-1jammy.20250607.031154 [116 kB] 获取:16 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym amd64 6.2.7-1jammy.20250607.031154 [3,508 kB] 获取:17 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-shared-cpp amd64 6.2.7-1jammy.20250607.025731 [162 kB] 获取:18 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-fastrtps-shared-cpp-dbgsym amd64 6.2.7-1jammy.20250607.025731 [5,279 kB] 获取:19 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-gurumdds-cpp amd64 3.4.2-1jammy.20250607.025728 [167 kB] 获取:20 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-gurumdds-cpp-dbgsym amd64 3.4.2-1jammy.20250607.025728 [2,006 kB] 获取:21 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-implementation amd64 2.8.4-1jammy.20250607.031631 [25.4 kB] 获取:22 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-implementation-cmake amd64 6.1.2-1jammy.20250522.072625 [8,878 B] 获取:23 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-implementation-dbgsym amd64 2.8.4-1jammy.20250607.031631 [91.7 kB] 获取:24 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-zenoh-cpp amd64 0.1.1-1jammy.20250607.024355 [186 kB] 获取:25 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-rmw-zenoh-cpp-dbgsym amd64 0.1.1-1jammy.20250607.024355 [4,829 kB] 获取:26 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main amd64 ros-humble-ros-base amd64 0.10.0-1jammy.20250618.005618 [5,632 B] 已下载 29.0 MB,耗时 9秒 (3,373 kB/s) debconf: 无法初始化前端界面:Dialog debconf: (对话框界面要求屏幕画面必须为至少 13 行高及 31 列宽.) debconf: 返回前端界面:Readline (正在读取数据库 ... 系统当前共安装有 310883 个文件和目录。) 准备解压 .../00-ros-humble-rmw_6.1.2-1jammy.20250607.015321_amd64.deb ... 正在解压 ros-humble-rmw (6.1.2-1jammy.20250607.015321) 并覆盖 (6.1.2-1jammy.20250607.015321) ... 准备解压 .../01-ros-humble-rmw-connextdds_0.11.3-1jammy.20250607.030145_amd64.deb ... 正在解压 ros-humble-rmw-connextdds (0.11.3-1jammy.20250607.030145) 并覆盖 (0.11.3-1jammy.20250607.030145) ... 准备解压 .../02-ros-humble-rmw-connextdds-common_0.11.3-1jammy.20250607.025720_amd64.deb ... 正在解压 ros-humble-rmw-connextdds-common (0.11.3-1jammy.20250607.025720) 并覆盖 (0.11.3-1jammy.20250607.025720) ... 准备解压 .../03-ros-humble-rmw-connextdds-common-dbgsym_0.11.3-1jammy.20250607.025720_amd64.deb ... 正在解压 ros-humble-rmw-connextdds-common-dbgsym (0.11.3-1jammy.20250607.025720) 并覆盖 (0.11.3-1jammy.20250607.025720) ... 准备解压 .../04-ros-humble-rmw-connextdds-dbgsym_0.11.3-1jammy.20250607.030145_amd64.deb ... 正在解压 ros-humble-rmw-connextdds-dbgsym (0.11.3-1jammy.20250607.030145) 并覆盖 (0.11.3-1jammy.20250607.030145) ... 准备解压 .../05-ros-humble-rmw-cyclonedds-cpp_1.3.4-1jammy.20250607.025717_amd64.deb ... 正在解压 ros-humble-rmw-cyclonedds-cpp (1.3.4-1jammy.20250607.025717) 并覆盖 (1.3.4-1jammy.20250607.025717) ... 准备解压 .../06-ros-humble-rmw-cyclonedds-cpp-dbgsym_1.3.4-1jammy.20250607.025717_amd64.deb ... 正在解压 ros-humble-rmw-cyclonedds-cpp-dbgsym (1.3.4-1jammy.20250607.025717) 并覆盖 (1.3.4-1jammy.20250607.025717) ... 准备解压 .../07-ros-humble-rmw-dbgsym_6.1.2-1jammy.20250607.015321_amd64.deb ... 正在解压 ros-humble-rmw-dbgsym (6.1.2-1jammy.20250607.015321) 并覆盖 (6.1.2-1jammy.20250607.015321) ... 准备解压 .../08-ros-humble-rmw-dds-common_1.6.0-2jammy.20250607.025502_amd64.deb ... 正在解压 ros-humble-rmw-dds-common (1.6.0-2jammy.20250607.025502) 并覆盖 (1.6.0-2jammy.20250607.025502) ... 准备解压 .../09-ros-humble-rmw-dds-common-dbgsym_1.6.0-2jammy.20250607.025502_amd64.deb ... 正在解压 ros-humble-rmw-dds-common-dbgsym (1.6.0-2jammy.20250607.025502) 并覆盖 (1.6.0-2jammy.20250607.025502) ... 准备解压 .../10-ros-humble-rmw-desert_1.0.5-1jammy.20250607.025726_amd64.deb ... 正在解压 ros-humble-rmw-desert (1.0.5-1jammy.20250607.025726) 并覆盖 (1.0.5-1jammy.20250607.025726) ... 准备解压 .../11-ros-humble-rmw-desert-dbgsym_1.0.5-1jammy.20250607.025726_amd64.deb ... 正在解压 ros-humble-rmw-desert-dbgsym (1.0.5-1jammy.20250607.025726) 并覆盖 (1.0.5-1jammy.20250607.025726) ... 准备解压 .../12-ros-humble-rmw-fastrtps-cpp_6.2.7-1jammy.20250607.031129_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-cpp (6.2.7-1jammy.20250607.031129) 并覆盖 (6.2.7-1jammy.20250607.031129) ... 准备解压 .../13-ros-humble-rmw-fastrtps-cpp-dbgsym_6.2.7-1jammy.20250607.031129_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-cpp-dbgsym (6.2.7-1jammy.20250607.031129) 并覆盖 (6.2.7-1jammy.20250607.031129) ... 准备解压 .../14-ros-humble-rmw-fastrtps-dynamic-cpp_6.2.7-1jammy.20250607.031154_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-dynamic-cpp (6.2.7-1jammy.20250607.031154) 并覆盖 (6.2.7-1jammy.20250607.031154) ... 准备解压 .../15-ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym_6.2.7-1jammy.20250607.031154_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym (6.2.7-1jammy.20250607.031154) 并覆盖 (6.2.7-1jammy.20250607.031154) ... 准备解压 .../16-ros-humble-rmw-fastrtps-shared-cpp_6.2.7-1jammy.20250607.025731_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-shared-cpp (6.2.7-1jammy.20250607.025731) 并覆盖 (6.2.7-1jammy.20250607.025731) ... 准备解压 .../17-ros-humble-rmw-fastrtps-shared-cpp-dbgsym_6.2.7-1jammy.20250607.025731_amd64.deb ... 正在解压 ros-humble-rmw-fastrtps-shared-cpp-dbgsym (6.2.7-1jammy.20250607.025731) 并覆盖 (6.2.7-1jammy.20250607.025731) ... 准备解压 .../18-ros-humble-rmw-gurumdds-cpp_3.4.2-1jammy.20250607.025728_amd64.deb ... 正在解压 ros-humble-rmw-gurumdds-cpp (3.4.2-1jammy.20250607.025728) 并覆盖 (3.4.2-1jammy.20250607.025728) ... 准备解压 .../19-ros-humble-rmw-gurumdds-cpp-dbgsym_3.4.2-1jammy.20250607.025728_amd64.deb ... 正在解压 ros-humble-rmw-gurumdds-cpp-dbgsym (3.4.2-1jammy.20250607.025728) 并覆盖 (3.4.2-1jammy.20250607.025728) ... 准备解压 .../20-ros-humble-rmw-implementation_2.8.4-1jammy.20250607.031631_amd64.deb ... 正在解压 ros-humble-rmw-implementation (2.8.4-1jammy.20250607.031631) 并覆盖 (2.8.4-1jammy.20250607.031631) ... 准备解压 .../21-ros-humble-rmw-implementation-cmake_6.1.2-1jammy.20250522.072625_amd64.deb ... 正在解压 ros-humble-rmw-implementation-cmake (6.1.2-1jammy.20250522.072625) 并覆盖 (6.1.2-1jammy.20250522.072625) ... 准备解压 .../22-ros-humble-rmw-implementation-dbgsym_2.8.4-1jammy.20250607.031631_amd64.deb ... 正在解压 ros-humble-rmw-implementation-dbgsym (2.8.4-1jammy.20250607.031631) 并覆盖 (2.8.4-1jammy.20250607.031631) ... 准备解压 .../23-ros-humble-rmw-zenoh-cpp_0.1.1-1jammy.20250607.024355_amd64.deb ... 正在解压 ros-humble-rmw-zenoh-cpp (0.1.1-1jammy.20250607.024355) 并覆盖 (0.1.1-1jammy.20250607.024355) ... 准备解压 .../24-ros-humble-rmw-zenoh-cpp-dbgsym_0.1.1-1jammy.20250607.024355_amd64.deb ... 正在解压 ros-humble-rmw-zenoh-cpp-dbgsym (0.1.1-1jammy.20250607.024355) 并覆盖 (0.1.1-1jammy.20250607.024355) ... 准备解压 .../25-ros-humble-ros-base_0.10.0-1jammy.20250618.005618_amd64.deb ... 正在解压 ros-humble-ros-base (0.10.0-1jammy.20250618.005618) 并覆盖 (0.10.0-1jammy.20250429.225608) ... 正在设置 ros-humble-rmw (6.1.2-1jammy.20250607.015321) ... 正在设置 ros-humble-rmw-zenoh-cpp (0.1.1-1jammy.20250607.024355) ... 正在设置 ros-humble-rmw-implementation-cmake (6.1.2-1jammy.20250522.072625) ... 正在设置 ros-humble-rmw-dbgsym (6.1.2-1jammy.20250607.015321) ... 正在设置 ros-humble-ros-base (0.10.0-1jammy.20250618.005618) ... 正在设置 ros-humble-rmw-dds-common (1.6.0-2jammy.20250607.025502) ... 正在设置 ros-humble-rmw-fastrtps-shared-cpp (6.2.7-1jammy.20250607.025731) ... 正在设置 ros-humble-rmw-desert (1.0.5-1jammy.20250607.025726) ... 正在设置 ros-humble-rmw-gurumdds-cpp (3.4.2-1jammy.20250607.025728) ... 正在设置 ros-humble-rmw-cyclonedds-cpp (1.3.4-1jammy.20250607.025717) ... 正在设置 ros-humble-rmw-connextdds-common (0.11.3-1jammy.20250607.025720) ... 正在设置 ros-humble-rmw-zenoh-cpp-dbgsym (0.1.1-1jammy.20250607.024355) ... 正在设置 ros-humble-rmw-fastrtps-dynamic-cpp (6.2.7-1jammy.20250607.031154) ... 正在设置 ros-humble-rmw-dds-common-dbgsym (1.6.0-2jammy.20250607.025502) ... 正在设置 ros-humble-rmw-fastrtps-shared-cpp-dbgsym (6.2.7-1jammy.20250607.025731) ... 正在设置 ros-humble-rmw-fastrtps-cpp (6.2.7-1jammy.20250607.031129) ... 正在设置 ros-humble-rmw-connextdds (0.11.3-1jammy.20250607.030145) ... 正在设置 ros-humble-rmw-connextdds-common-dbgsym (0.11.3-1jammy.20250607.025720) ... 正在设置 ros-humble-rmw-cyclonedds-cpp-dbgsym (1.3.4-1jammy.20250607.025717) ... 正在设置 ros-humble-rmw-desert-dbgsym (1.0.5-1jammy.20250607.025726) ... 正在设置 ros-humble-rmw-fastrtps-dynamic-cpp-dbgsym (6.2.7-1jammy.20250607.031154) ... 正在设置 ros-humble-rmw-connextdds-dbgsym (0.11.3-1jammy.20250607.030145) ... 正在设置 ros-humble-rmw-implementation (2.8.4-1jammy.20250607.031631) ... 正在设置 ros-humble-rmw-gurumdds-cpp-dbgsym (3.4.2-1jammy.20250607.025728) ... 正在设置 ros-humble-rmw-implementation-dbgsym (2.8.4-1jammy.20250607.031631) ... 正在设置 ros-humble-rmw-fastrtps-cpp-dbgsym (6.2.7-1jammy.20250607.031129) ... 正在处理用于 libc-bin (2.35-0ubuntu3.10) 的触发器 ... /sbin/ldconfig.real: /lib/libMvUsb3vTL.so is not a symbolic link /sbin/ldconfig.real: /lib/libMVGigEVisionSDK.so is not a symbolic link /sbin/ldconfig.real: /lib/libMvCamLVision.so is not a symbolic link /sbin/ldconfig.real: /lib/libMvCameraControl.so is not a symbolic link /sbin/ldconfig.real: /lib/libMvCameraControlWrapper.so is not a symbolic link

交叉编译不能执行怎么办xy-shiqi@xyshiqi-vmware:~/ros2_ws/src/only-navigaton$ cd ~/ros2_ws rm -rf build_arm install_arm log xy-shiqi@xyshiqi-vmware:~/ros2_ws$ unset LD_LIBRARY_PATH xy-shiqi@xyshiqi-vmware:~/ros2_ws$ source /opt/poky/3.1.20/environment-setup-aarch64-poky-linux source /opt/ros/humble/setup.bash xy-shiqi@xyshiqi-vmware:~/ros2_ws$ source /opt/poky/3.1.20/environment-setup-aarch64-poky-linux Your environment is misconfigured, you probably need to 'unset LD_LIBRARY_PATH' but please check why this was set in the first place and that it's safe to unset. The SDK will not operate correctly in most cases when LD_LIBRARY_PATH is set. For more references see: http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html#AEN80 http://xahlee.info/UnixResource_dir/_/ldpath.html xy-shiqi@xyshiqi-vmware:~/ros2_ws$ source /opt/poky/3.1.20/environment-setup-aarch64-poky-linux Your environment is misconfigured, you probably need to 'unset LD_LIBRARY_PATH' but please check why this was set in the first place and that it's safe to unset. The SDK will not operate correctly in most cases when LD_LIBRARY_PATH is set. For more references see: http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html#AEN80 http://xahlee.info/UnixResource_dir/_/ldpath.html xy-shiqi@xyshiqi-vmware:~/ros2_ws$ source /opt/ros/humble/setup.bash xy-shiqi@xyshiqi-vmware:~/ros2_ws$ colcon build \ --build-base build_arm \ --install-base install_arm \ --merge-install \ --cmake-args \ -DCMAKE_TOOLCHAIN_FILE=/opt/poky/3.1.20/sysroots/x86_64-pokysdk-linux/usr/share/cmake/OEToolchainConfig.cmake Starting >>> only-navigaton --- stderr: only-navigaton CMake Error at /opt/ros/humble/share/ament_cmake/cmake/ament_cmake_export_dependencies-extras.cmake:21 (find_package): By not providing "Findament_cmake_export_interfaces.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "ament_cmake_export_interfaces", but CMake did not find one. Could not find a package configuration file provided by "ament_cmake_export_interfaces" with any of the following names: ament_cmake_export_interfacesConfig.cmake ament_cmake_export_interfaces-config.cmake Add the installation prefix of "ament_cmake_export_interfaces" to CMAKE_PREFIX_PATH or set "ament_cmake_export_interfaces_DIR" to a directory containing one of the above files. If "ament_cmake_export_interfaces" provides a separate development package or SDK, be sure it has been installed. Call Stack (most recent call first): /opt/ros/humble/share/ament_cmake/cmake/ament_cmakeConfig.cmake:41 (include) CMakeLists.txt:31 (find_package) --- Failed <<< only-navigaton [0.54s, exited with code 1] Summary: 0 packages finished [0.76s] 1 package failed: only-navigaton 1 package had stderr output: only-navigaton xy-shiqi@xyshiqi-vmware:~/ros2_ws$

输入:sudo apt update sudo apt install python3-catkin-pkg-modules=0.5.2-1001 \ python3-rosdistro-modules=0.9.0-1 \ python3-rosdep=0.22.2-1 输出:命中:1 http://mirrors.ustc.edu.cn/ubuntu jammy InRelease 命中:2 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease 忽略:3 http://deb.repo.autolabor.com.cn jammy InRelease 命中:4 http://mirrors.ustc.edu.cn/ubuntu jammy-updates InRelease 命中:5 http://mirrors.aliyun.com/ubuntu jammy InRelease 命中:6 http://mirrors.ustc.edu.cn/ubuntu jammy-backports InRelease 错误:7 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main i386 Packages 404 Not Found [IP: 2402:f000:1:400::2 80] 忽略:8 http://deb.repo.autolabor.com.cn jammy Release 忽略:9 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 命中:10 http://mirrors.ustc.edu.cn/ubuntu jammy-security InRelease 错误:7 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy/main i386 Packages 404 Not Found [IP: 2402:f000:1:400::2 80] 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:9 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:9 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 命中:9 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 忽略:11 http://deb.repo.autolabor.com.cn jammy/main all Packages 忽略:12 http://deb.repo.autolabor.com.cn jammy/main Translation-zh_CN 忽略:13 http://deb.repo.autolabor.com.cn jammy/main Translation-en_CA 忽略:14 http://deb.repo.autolabor.com.cn jammy/main Translation-en_GB 忽略:15 http://deb.repo.autolabor.com.cn jammy/main Translation-en_AU 忽略:16 http://deb.repo.autolabor.com.cn jammy/main Translation-en 忽略:17 http://deb.repo.autolabor.com.cn jammy/main Translation-zh 忽略:18 http://deb.repo.autolabor.com.cn jammy/main amd64 DEP-11 Metadata 忽略:19 http://deb.repo.autolabor.com.cn jammy/main all DEP-11 Metadata 忽略:20 http://deb.repo.autolabor.com.cn jammy/main DEP-11 48x48 Icons 忽略:21 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64 Icons 忽略:22 http://deb.repo.autolabor.com.cn jammy/main DEP-11 64x64@2 Icons 忽略:23 http://deb.repo.autolabor.com.cn jammy/main all c-n-f Metadata 忽略:24 http://deb.repo.autolabor.com.cn jammy/main amd64 c-n-f Metadata 正在读取软件包列表... 完成 E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu/dists/jammy/main/binary-i386/Packages 404 Not Found [IP: 2402:f000:1:400::2 80] E: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。 正在读取软件包列表... 完成 正在分析软件包的依赖关系树... 完成 正在读取状态信息... 完成 没有可用的软件包 python3-rosdep,但是它被其它的软件包引用了。 这可能意味着这个缺失的软件包可能已被废弃, 或者只能在其他发布源中找到 然而下列软件包会取代它: python3-rosdep-modules 没有可用的软件包 python3-catkin-pkg-modules,但是它被其它的软件包引用了。 这可能意味着这个缺失的软件包可能已被废弃, 或者只能在其他发布源中找到 没有可用的软件包 python3-rosdistro-modules,但是它被其它的软件包引用了。 这可能意味着这个缺失的软件包可能已被废弃, 或者只能在其他发布源中找到 E: 未找到“python3-catkin-pkg-modules”的“0.5.2-1001”版本 E: 未找到“python3-rosdistro-modules”的“0.9.0-1”版本 E: 未找到“python3-rosdep”的“0.22.2-1”版本

legion@legion-Legion-Y7000P-IRX9:~$ sudo apt update [sudo] password for legion: Get:1 file:/var/cuda-repo-ubuntu2004-12-8-local InRelease [1,572 B] Get:1 file:/var/cuda-repo-ubuntu2004-12-8-local InRelease [1,572 B] Hit:2 http://mirrors.ustc.edu.cn/ubuntu focal InRelease Hit:3 http://mirrors.ustc.edu.cn/ubuntu focal-updates InRelease Hit:4 http://mirrors.ustc.edu.cn/ubuntu focal-backports InRelease Hit:5 http://mirrors.ustc.edu.cn/ubuntu focal-security InRelease Get:6 https://repo.huaweicloud.com/ros/ubuntu focal InRelease [4,679 B] Hit:7 https://packages.microsoft.com/repos/edge stable InRelease Err:6 https://repo.huaweicloud.com/ros/ubuntu focal InRelease The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> Hit:8 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal InRelease Hit:9 http://packages.osrfoundation.org/gazebo/ubuntu-stable focal InRelease Get:10 https://repo.huaweicloud.com/ros2/ubuntu focal InRelease [4,685 B] Err:10 https://repo.huaweicloud.com/ros2/ubuntu focal InRelease The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> Hit:11 http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu focal InRelease Fetched 9,364 B in 1s (11.1 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://repo.huaweicloud.com/ros/ubuntu focal InRelease: The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://repo.huaweicloud.com/ros2/ubuntu focal InRelease: The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> W: Failed to fetch https://repo.huaweicloud.com/ros/ubuntu/dists/focal/InRelease The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> W: Failed to fetch https://repo.huaweicloud.com/ros2/ubuntu/dists/focal/InRelease The following signatures were invalid: EXPKEYSIG F42ED6FBAB17C654 Open Robotics <[email protected]> W: Some index files failed to download. They have been ignored, or old ones used instead. legion@legion-Legion-Y7000P-IRX9:~$

下面是我按照你的思路执行指令后终端打印的结果(base) casbot@casbot:~/ros_catkin_ws$ # 备份原文件 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak # 使用清华源(Ubuntu 22.04) sudo sed -i 's@//.*archive.ubuntu.com@//mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.list sudo apt update && sudo apt upgrade -y Ign:1 http://deb.repo.autolabor.com.cn jammy InRelease Ign:2 http://deb.repo.autolabor.com.cn jammy Release Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Hit:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy InRelease Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Hit:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates InRelease Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Hit:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-backports InRelease Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Hit:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-security InRelease Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Get:10 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease [4682 B] Hit:11 http://packages.ros.org/ros/ubuntu focal InRelease Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Hit:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:6 http://deb.repo.autolabor.com.cn jammy/main Translation-en Fetched 4682 B in 3s (1850 B/s) Reading package lists... Done Building dependency tree... Done Reading state information... Done 80 packages can be upgraded. Run 'apt list --upgradable' to see them. Reading package lists... Done Building dependency tree... Done Reading state information... Done Calculating upgrade... Done Get more security updates through Ubuntu Pro with 'esm-apps' enabled: exo-utils libzvbi-common libzbar0 libheif1 libiperf0 libmujs1 libavdevice58 ffmpeg libopenexr25 libpostproc55 libmagickcore-6.q16-6-extra libavcodec58 libgstreamer-plugins-bad1.0-0 iperf3 libmagickwand-6.q16-6 libavutil56 libswscale5 libmagickcore-6.q16-6 libexo-2-0 libgsl27 gir1.2-gst-plugins-bad-1.0 libswresample3 imagemagick-6-common libavformat58 libzvbi0 gstreamer1.0-plugins-bad libgslcblas0 libde265-0 libexo-common libavfilter7 Learn more about Ubuntu Pro at https://ubuntu.com/pro The following NEW packages will be installed: libxcvt-dev The following packages have been kept back: dvb-tools ir-keytable libdvbv5-0 libdvbv5-dev libv4l-0 libv4l-dev libv4l2rds0 libv4lconvert0 qv4l2 v4l-utils xserver-common xserver-xorg-core xserver-xorg-legacy The following packages will be upgraded: apport ghostscript ghostscript-x gir1.2-javascriptcoregtk-4.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 git git-man libarchive13 libblockdev-crypto2 libblockdev-fs2 libblockdev-loop2 libblockdev-part-err2 libblockdev-part2 libblockdev-swap2 libblockdev-utils2 libblockdev2 libdjvulibre-text libdjvulibre21 libdvbv5-doc libgnutls30 libgs9 libgs9-common libjavascriptcoregtk-4.0-18 libnss-systemd libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g libprotobuf23 libpython3.10 libpython3.10-dev libpython3.10-minimal libpython3.10-stdlib libre2-9 libsoup-gnome2.4-1 libsoup2.4-1 libsoup2.4-common libssh-4 libssh-gcrypt-4 libsystemd0 libudev1 libudisks2-0 libvpx7 libwebkit2gtk-4.0-37 libxslt1.1 linux-libc-dev python3-apport python3-pip python3-problem-report python3-protobuf python3-requests python3-urllib3 python3.10 python3.10-dev python3.10-minimal sudo systemd systemd-sysv ubuntu-advantage-tools ubuntu-pro-client ubuntu-pro-client-l10n udev udisks2 xserver-xorg-dev xwayland 67 upgraded, 1 newly installed, 0 to remove and 13 not upgraded. 62 standard LTS security updates Need to get 77.1 MB of archives. After this operation, 64.5 kB of additional disk space will be used. Get:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpam0g arm64 1.4.0-11ubuntu2.6 [59.7 kB] Get:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpam-modules-bin arm64 1.4.0-11ubuntu2.6 [38.6 kB] Get:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpam-modules arm64 1.4.0-11ubuntu2.6 [279 kB] Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libnss-systemd arm64 249.11-0ubuntu3.16 [133 kB] Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libsystemd0 arm64 249.11-0ubuntu3.16 [314 kB] Get:6 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 systemd-sysv arm64 249.11-0ubuntu3.16 [10.5 kB] Get:7 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpam-systemd arm64 249.11-0ubuntu3.16 [205 kB] Get:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 systemd arm64 249.11-0ubuntu3.16 [4423 kB] Get:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 udev arm64 249.11-0ubuntu3.16 [1541 kB] Get:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libudev1 arm64 249.11-0ubuntu3.16 [74.5 kB] Get:11 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpam-runtime all 1.4.0-11ubuntu2.6 [40.2 kB] Get:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libgnutls30 arm64 3.7.3-4ubuntu1.7 [922 kB] Get:13 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3.10-dev arm64 3.10.12-1~22.04.10 [508 kB] Get:14 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpython3.10-dev arm64 3.10.12-1~22.04.10 [4666 kB] Get:15 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpython3.10 arm64 3.10.12-1~22.04.10 [1885 kB] Get:16 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3.10 arm64 3.10.12-1~22.04.10 [508 kB] Get:17 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpython3.10-stdlib arm64 3.10.12-1~22.04.10 [1846 kB] Get:18 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3.10-minimal arm64 3.10.12-1~22.04.10 [2260 kB] Get:19 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libpython3.10-minimal arm64 3.10.12-1~22.04.10 [812 kB] Get:20 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 sudo arm64 1.9.9-1ubuntu2.5 [807 kB] Get:21 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 ubuntu-pro-client-l10n arm64 36ubuntu0~22.04 [20.6 kB] Get:22 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 ubuntu-pro-client arm64 36ubuntu0~22.04 [236 kB] Get:23 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 ubuntu-advantage-tools all 36ubuntu0~22.04 [10.9 kB] Get:24 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3-problem-report all 2.20.11-0ubuntu82.9 [11.4 kB] Get:25 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3-apport all 2.20.11-0ubuntu82.9 [89.0 kB] Get:26 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 apport all 2.20.11-0ubuntu82.9 [135 kB] Get:27 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 ghostscript-x arm64 9.55.0~dfsg1-0ubuntu5.12 [48.0 kB] Get:28 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 ghostscript arm64 9.55.0~dfsg1-0ubuntu5.12 [49.7 kB] Get:29 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libgs9 arm64 9.55.0~dfsg1-0ubuntu5.12 [4956 kB] Get:30 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libgs9-common all 9.55.0~dfsg1-0ubuntu5.12 [753 kB] Get:31 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 gir1.2-webkit2-4.0 arm64 2.48.3-0ubuntu0.22.04.1 [105 kB] Get:32 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 gir1.2-javascriptcoregtk-4.0 arm64 2.48.3-0ubuntu0.22.04.1 [39.0 kB] Get:33 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libwebkit2gtk-4.0-37 arm64 2.48.3-0ubuntu0.22.04.1 [26.2 MB] Get:34 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libjavascriptcoregtk-4.0-18 arm64 2.48.3-0ubuntu0.22.04.1 [8729 kB] Get:35 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 gir1.2-soup-2.4 arm64 2.74.2-3ubuntu0.6 [31.8 kB] Get:36 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libsoup-gnome2.4-1 arm64 2.74.2-3ubuntu0.6 [6194 B] Get:37 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libsoup2.4-common all 2.74.2-3ubuntu0.6 [4778 B] Get:38 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libsoup2.4-1 arm64 2.74.2-3ubuntu0.6 [281 kB] Get:39 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libxslt1.1 arm64 1.1.34-4ubuntu0.22.04.4 [161 kB] Get:40 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 git-man all 1:2.34.1-1ubuntu1.15 [955 kB] Get:41 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 git arm64 1:2.34.1-1ubuntu1.15 [3224 kB] Get:42 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libarchive13 arm64 3.6.0-1ubuntu1.5 [367 kB] Get:43 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-utils2 arm64 2.26-1ubuntu0.1 [15.5 kB] Get:44 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-crypto2 arm64 2.26-1ubuntu0.1 [17.3 kB] Get:45 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-part-err2 arm64 2.26-1ubuntu0.1 [5650 B] Get:46 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-fs2 arm64 2.26-1ubuntu0.1 [21.5 kB] Get:47 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-loop2 arm64 2.26-1ubuntu0.1 [6838 B] Get:48 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-part2 arm64 2.26-1ubuntu0.1 [15.0 kB] Get:49 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev-swap2 arm64 2.26-1ubuntu0.1 [7452 B] Get:50 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libblockdev2 arm64 2.26-1ubuntu0.1 [45.5 kB] Get:51 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libdjvulibre-text all 3.5.28-2ubuntu0.22.04.1 [51.0 kB] Get:52 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libdjvulibre21 arm64 3.5.28-2ubuntu0.22.04.1 [590 kB] Get:53 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy/main arm64 libdvbv5-doc all 1.22.1-2build1 [1479 kB] Get:54 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libprotobuf23 arm64 3.12.4-1ubuntu7.22.04.4 [809 kB] Get:55 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy/main arm64 libre2-9 arm64 20220201+dfsg-1 [153 kB] Get:56 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libssh-4 arm64 0.9.6-2ubuntu0.22.04.4 [185 kB] Get:57 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libssh-gcrypt-4 arm64 0.9.6-2ubuntu0.22.04.4 [224 kB] Get:58 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libudisks2-0 arm64 2.9.4-1ubuntu2.2 [168 kB] Get:59 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 libvpx7 arm64 1.11.0-2ubuntu2.4 [1042 kB] Get:60 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy/main arm64 libxcvt-dev arm64 0.1.1-3 [3236 B] Get:61 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 linux-libc-dev arm64 5.15.0-144.157 [1294 kB] Get:62 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/universe arm64 python3-pip all 22.0.2+dfsg-1ubuntu0.6 [1306 kB] Get:63 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3-protobuf arm64 3.12.4-1ubuntu7.22.04.4 [352 kB] Get:64 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.3 [98.6 kB] Get:65 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 python3-requests all 2.25.1+dfsg-2ubuntu0.3 [48.8 kB] Get:66 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 udisks2 arm64 2.9.4-1ubuntu2.2 [275 kB] Get:67 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 xserver-xorg-dev arm64 2:21.1.4-2ubuntu1.7~22.04.15 [205 kB] Get:68 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates/main arm64 xwayland arm64 2:22.1.1-1ubuntu0.19 [918 kB] Fetched 77.1 MB in 4min 46s (270 kB/s) Extracting templates from packages: 100% Preconfiguring packages ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libpam0g_1.4.0-11ubuntu2.6_arm64.deb ... Unpacking libpam0g:arm64 (1.4.0-11ubuntu2.6) over (1.4.0-11ubuntu2.5) ... Setting up libpam0g:arm64 (1.4.0-11ubuntu2.6) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libpam-modules-bin_1.4.0-11ubuntu2.6_arm64.deb ... Unpacking libpam-modules-bin (1.4.0-11ubuntu2.6) over (1.4.0-11ubuntu2.5) ... Setting up libpam-modules-bin (1.4.0-11ubuntu2.6) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libpam-modules_1.4.0-11ubuntu2.6_arm64.deb ... Unpacking libpam-modules:arm64 (1.4.0-11ubuntu2.6) over (1.4.0-11ubuntu2.5) ... Setting up libpam-modules:arm64 (1.4.0-11ubuntu2.6) ... Installing new version of config file /etc/security/namespace.init ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libnss-systemd_249.11-0ubuntu3.16_arm64.deb ... Unpacking libnss-systemd:arm64 (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Preparing to unpack .../libsystemd0_249.11-0ubuntu3.16_arm64.deb ... Unpacking libsystemd0:arm64 (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Setting up libsystemd0:arm64 (249.11-0ubuntu3.16) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../systemd-sysv_249.11-0ubuntu3.16_arm64.deb ... Unpacking systemd-sysv (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Preparing to unpack .../libpam-systemd_249.11-0ubuntu3.16_arm64.deb ... Unpacking libpam-systemd:arm64 (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Preparing to unpack .../systemd_249.11-0ubuntu3.16_arm64.deb ... Unpacking systemd (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Preparing to unpack .../udev_249.11-0ubuntu3.16_arm64.deb ... Unpacking udev (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Preparing to unpack .../libudev1_249.11-0ubuntu3.16_arm64.deb ... Unpacking libudev1:arm64 (249.11-0ubuntu3.16) over (249.11-0ubuntu3.15) ... Setting up libudev1:arm64 (249.11-0ubuntu3.16) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libpam-runtime_1.4.0-11ubuntu2.6_all.deb ... Unpacking libpam-runtime (1.4.0-11ubuntu2.6) over (1.4.0-11ubuntu2.5) ... Setting up libpam-runtime (1.4.0-11ubuntu2.6) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../libgnutls30_3.7.3-4ubuntu1.7_arm64.deb ... Unpacking libgnutls30:arm64 (3.7.3-4ubuntu1.7) over (3.7.3-4ubuntu1.6) ... Setting up libgnutls30:arm64 (3.7.3-4ubuntu1.7) ... (Reading database ... 126982 files and directories currently installed.) Preparing to unpack .../00-python3.10-dev_3.10.12-1~22.04.10_arm64.deb ... Unpacking python3.10-dev (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../01-libpython3.10-dev_3.10.12-1~22.04.10_arm64.deb ... Unpacking libpython3.10-dev:arm64 (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../02-libpython3.10_3.10.12-1~22.04.10_arm64.deb ... Unpacking libpython3.10:arm64 (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../03-python3.10_3.10.12-1~22.04.10_arm64.deb ... Unpacking python3.10 (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../04-libpython3.10-stdlib_3.10.12-1~22.04.10_arm64.deb ... Unpacking libpython3.10-stdlib:arm64 (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../05-python3.10-minimal_3.10.12-1~22.04.10_arm64.deb ... Unpacking python3.10-minimal (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../06-libpython3.10-minimal_3.10.12-1~22.04.10_arm64.deb ... Unpacking libpython3.10-minimal:arm64 (3.10.12-1~22.04.10) over (3.10.12-1~22.04.9) ... Preparing to unpack .../07-sudo_1.9.9-1ubuntu2.5_arm64.deb ... Unpacking sudo (1.9.9-1ubuntu2.5) over (1.9.9-1ubuntu2.4) ... Preparing to unpack .../08-ubuntu-pro-client-l10n_36ubuntu0~22.04_arm64.deb ... Unpacking ubuntu-pro-client-l10n (36ubuntu0~22.04) over (35.1ubuntu0~22.04) ... Preparing to unpack .../09-ubuntu-pro-client_36ubuntu0~22.04_arm64.deb ... Unpacking ubuntu-pro-client (36ubuntu0~22.04) over (35.1ubuntu0~22.04) ... Preparing to unpack .../10-ubuntu-advantage-tools_36ubuntu0~22.04_all.deb ... Unpacking ubuntu-advantage-tools (36ubuntu0~22.04) over (35.1ubuntu0~22.04) ... Preparing to unpack .../11-python3-problem-report_2.20.11-0ubuntu82.9_all.deb ... Unpacking python3-problem-report (2.20.11-0ubuntu82.9) over (2.20.11-0ubuntu82.7) ... Preparing to unpack .../12-python3-apport_2.20.11-0ubuntu82.9_all.deb ... Unpacking python3-apport (2.20.11-0ubuntu82.9) over (2.20.11-0ubuntu82.7) ... Preparing to unpack .../13-apport_2.20.11-0ubuntu82.9_all.deb ... Unpacking apport (2.20.11-0ubuntu82.9) over (2.20.11-0ubuntu82.7) ... Preparing to unpack .../14-ghostscript-x_9.55.0~dfsg1-0ubuntu5.12_arm64.deb ... Unpacking ghostscript-x (9.55.0~dfsg1-0ubuntu5.12) over (9.55.0~dfsg1-0ubuntu5.11) ... Preparing to unpack .../15-ghostscript_9.55.0~dfsg1-0ubuntu5.12_arm64.deb ... Unpacking ghostscript (9.55.0~dfsg1-0ubuntu5.12) over (9.55.0~dfsg1-0ubuntu5.11) ... Preparing to unpack .../16-libgs9_9.55.0~dfsg1-0ubuntu5.12_arm64.deb ... Unpacking libgs9:arm64 (9.55.0~dfsg1-0ubuntu5.12) over (9.55.0~dfsg1-0ubuntu5.11) ... Preparing to unpack .../17-libgs9-common_9.55.0~dfsg1-0ubuntu5.12_all.deb ... Unpacking libgs9-common (9.55.0~dfsg1-0ubuntu5.12) over (9.55.0~dfsg1-0ubuntu5.11) ... Preparing to unpack .../18-gir1.2-webkit2-4.0_2.48.3-0ubuntu0.22.04.1_arm64.deb ... Unpacking gir1.2-webkit2-4.0:arm64 (2.48.3-0ubuntu0.22.04.1) over (2.48.1-0ubuntu0.22.04.1) ... Preparing to unpack .../19-gir1.2-javascriptcoregtk-4.0_2.48.3-0ubuntu0.22.04.1_arm64.deb ... Unpacking gir1.2-javascriptcoregtk-4.0:arm64 (2.48.3-0ubuntu0.22.04.1) over (2.48.1-0ubuntu0.22.04.1) ... Preparing to unpack .../20-libwebkit2gtk-4.0-37_2.48.3-0ubuntu0.22.04.1_arm64.deb ... Unpacking libwebkit2gtk-4.0-37:arm64 (2.48.3-0ubuntu0.22.04.1) over (2.48.1-0ubuntu0.22.04.1) ... Preparing to unpack .../21-libjavascriptcoregtk-4.0-18_2.48.3-0ubuntu0.22.04.1_arm64.deb ... Unpacking libjavascriptcoregtk-4.0-18:arm64 (2.48.3-0ubuntu0.22.04.1) over (2.48.1-0ubuntu0.22.04.1) ... Preparing to unpack .../22-gir1.2-soup-2.4_2.74.2-3ubuntu0.6_arm64.deb ... Unpacking gir1.2-soup-2.4:arm64 (2.74.2-3ubuntu0.6) over (2.74.2-3ubuntu0.5) ... Preparing to unpack .../23-libsoup-gnome2.4-1_2.74.2-3ubuntu0.6_arm64.deb ... Unpacking libsoup-gnome2.4-1:arm64 (2.74.2-3ubuntu0.6) over (2.74.2-3ubuntu0.5) ... Preparing to unpack .../24-libsoup2.4-common_2.74.2-3ubuntu0.6_all.deb ... Unpacking libsoup2.4-common (2.74.2-3ubuntu0.6) over (2.74.2-3ubuntu0.5) ... Preparing to unpack .../25-libsoup2.4-1_2.74.2-3ubuntu0.6_arm64.deb ... Unpacking libsoup2.4-1:arm64 (2.74.2-3ubuntu0.6) over (2.74.2-3ubuntu0.5) ... Preparing to unpack .../26-libxslt1.1_1.1.34-4ubuntu0.22.04.4_arm64.deb ... Unpacking libxslt1.1:arm64 (1.1.34-4ubuntu0.22.04.4) over (1.1.34-4ubuntu0.22.04.3) ... Preparing to unpack .../27-git-man_1%3a2.34.1-1ubuntu1.15_all.deb ... Unpacking git-man (1:2.34.1-1ubuntu1.15) over (1:2.34.1-1ubuntu1.12) ... Preparing to unpack .../28-git_1%3a2.34.1-1ubuntu1.15_arm64.deb ... Unpacking git (1:2.34.1-1ubuntu1.15) over (1:2.34.1-1ubuntu1.12) ... Preparing to unpack .../29-libarchive13_3.6.0-1ubuntu1.5_arm64.deb ... Unpacking libarchive13:arm64 (3.6.0-1ubuntu1.5) over (3.6.0-1ubuntu1.4) ... Preparing to unpack .../30-libblockdev-utils2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-utils2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../31-libblockdev-crypto2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-crypto2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../32-libblockdev-part-err2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-part-err2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../33-libblockdev-fs2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-fs2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../34-libblockdev-loop2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-loop2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../35-libblockdev-part2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-part2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../36-libblockdev-swap2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev-swap2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../37-libblockdev2_2.26-1ubuntu0.1_arm64.deb ... Unpacking libblockdev2:arm64 (2.26-1ubuntu0.1) over (2.26-1) ... Preparing to unpack .../38-libdjvulibre-text_3.5.28-2ubuntu0.22.04.1_all.deb ... Unpacking libdjvulibre-text (3.5.28-2ubuntu0.22.04.1) over (3.5.28-2build2) ... Preparing to unpack .../39-libdjvulibre21_3.5.28-2ubuntu0.22.04.1_arm64.deb ... Unpacking libdjvulibre21:arm64 (3.5.28-2ubuntu0.22.04.1) over (3.5.28-2build2) ... Preparing to unpack .../40-libdvbv5-doc_1.22.1-2build1_all.deb ... Unpacking libdvbv5-doc (1.22.1-2build1) over (1.18.0-2build1) ... Preparing to unpack .../41-libprotobuf23_3.12.4-1ubuntu7.22.04.4_arm64.deb ... Unpacking libprotobuf23:arm64 (3.12.4-1ubuntu7.22.04.4) over (3.12.4-1ubuntu7.22.04.2) ... Preparing to unpack .../42-libre2-9_20220201+dfsg-1_arm64.deb ... Unpacking libre2-9:arm64 (20220201+dfsg-1) over (20210201+dfsg-1) ... Preparing to unpack .../43-libssh-4_0.9.6-2ubuntu0.22.04.4_arm64.deb ... Unpacking libssh-4:arm64 (0.9.6-2ubuntu0.22.04.4) over (0.9.6-2ubuntu0.22.04.3) ... Preparing to unpack .../44-libssh-gcrypt-4_0.9.6-2ubuntu0.22.04.4_arm64.deb ... Unpacking libssh-gcrypt-4:arm64 (0.9.6-2ubuntu0.22.04.4) over (0.9.6-2ubuntu0.22.04.3) ... Preparing to unpack .../45-libudisks2-0_2.9.4-1ubuntu2.2_arm64.deb ... Unpacking libudisks2-0:arm64 (2.9.4-1ubuntu2.2) over (2.9.4-1ubuntu2) ... Preparing to unpack .../46-libvpx7_1.11.0-2ubuntu2.4_arm64.deb ... Unpacking libvpx7:arm64 (1.11.0-2ubuntu2.4) over (1.11.0-2ubuntu2.3) ... Selecting previously unselected package libxcvt-dev:arm64. Preparing to unpack .../47-libxcvt-dev_0.1.1-3_arm64.deb ... Unpacking libxcvt-dev:arm64 (0.1.1-3) ... Preparing to unpack .../48-linux-libc-dev_5.15.0-144.157_arm64.deb ... Unpacking linux-libc-dev:arm64 (5.15.0-144.157) over (5.15.0-142.152) ... Preparing to unpack .../49-python3-pip_22.0.2+dfsg-1ubuntu0.6_all.deb ... Unpacking python3-pip (22.0.2+dfsg-1ubuntu0.6) over (22.0.2+dfsg-1ubuntu0.5) ... Preparing to unpack .../50-python3-protobuf_3.12.4-1ubuntu7.22.04.4_arm64.deb ... Unpacking python3-protobuf (3.12.4-1ubuntu7.22.04.4) over (3.12.4-1ubuntu7.22.04.2) ... Preparing to unpack .../51-python3-urllib3_1.26.5-1~exp1ubuntu0.3_all.deb ... Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.3) over (1.26.5-1~exp1ubuntu0.2) ... Preparing to unpack .../52-python3-requests_2.25.1+dfsg-2ubuntu0.3_all.deb ... Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.3) over (2.25.1+dfsg-2ubuntu0.1) ... Preparing to unpack .../53-udisks2_2.9.4-1ubuntu2.2_arm64.deb ... Unpacking udisks2 (2.9.4-1ubuntu2.2) over (2.9.4-1ubuntu2) ... Preparing to unpack .../54-xserver-xorg-dev_2%3a21.1.4-2ubuntu1.7~22.04.15_arm64.deb ... Unpacking xserver-xorg-dev (2:21.1.4-2ubuntu1.7~22.04.15) over (2:1.20.13-1ubuntu1~20.04.2) ... Preparing to unpack .../55-xwayland_2%3a22.1.1-1ubuntu0.19_arm64.deb ... Unpacking xwayland (2:22.1.1-1ubuntu0.19) over (2:22.1.1-1ubuntu0.18) ... Setting up libssh-gcrypt-4:arm64 (0.9.6-2ubuntu0.22.04.4) ... Setting up libgs9-common (9.55.0~dfsg1-0ubuntu5.12) ... Setting up libre2-9:arm64 (20220201+dfsg-1) ... Setting up libxcvt-dev:arm64 (0.1.1-3) ... Setting up libgs9:arm64 (9.55.0~dfsg1-0ubuntu5.12) ... Setting up xserver-xorg-dev (2:21.1.4-2ubuntu1.7~22.04.15) ... Setting up libarchive13:arm64 (3.6.0-1ubuntu1.5) ... Setting up python3-problem-report (2.20.11-0ubuntu82.9) ... Setting up libjavascriptcoregtk-4.0-18:arm64 (2.48.3-0ubuntu0.22.04.1) ... Setting up linux-libc-dev:arm64 (5.15.0-144.157) ... Setting up libprotobuf23:arm64 (3.12.4-1ubuntu7.22.04.4) ... Setting up systemd (249.11-0ubuntu3.16) ... Setting up libdvbv5-doc (1.22.1-2build1) ... Setting up gir1.2-javascriptcoregtk-4.0:arm64 (2.48.3-0ubuntu0.22.04.1) ... Setting up ghostscript (9.55.0~dfsg1-0ubuntu5.12) ... Setting up python3-apport (2.20.11-0ubuntu82.9) ... Setting up libblockdev-utils2:arm64 (2.26-1ubuntu0.1) ... Setting up udev (249.11-0ubuntu3.16) ... Setting up libpython3.10-minimal:arm64 (3.10.12-1~22.04.10) ... Setting up sudo (1.9.9-1ubuntu2.5) ... Setting up python3-pip (22.0.2+dfsg-1ubuntu0.6) ... Setting up libssh-4:arm64 (0.9.6-2ubuntu0.22.04.4) ... Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.3) ... Setting up libsoup2.4-common (2.74.2-3ubuntu0.6) ... Setting up libxslt1.1:arm64 (1.1.34-4ubuntu0.22.04.4) ... Setting up libblockdev-part-err2:arm64 (2.26-1ubuntu0.1) ... Setting up git-man (1:2.34.1-1ubuntu1.15) ... Setting up libvpx7:arm64 (1.11.0-2ubuntu2.4) ... Setting up libdjvulibre-text (3.5.28-2ubuntu0.22.04.1) ... Setting up xwayland (2:22.1.1-1ubuntu0.19) ... Setting up python3-protobuf (3.12.4-1ubuntu7.22.04.4) ... Setting up ubuntu-pro-client (36ubuntu0~22.04) ... Installing new version of config file /etc/apparmor.d/ubuntu_pro_esm_cache ... Setting up libudisks2-0:arm64 (2.9.4-1ubuntu2.2) ... Setting up ubuntu-pro-client-l10n (36ubuntu0~22.04) ... Setting up systemd-sysv (249.11-0ubuntu3.16) ... Setting up libblockdev-crypto2:arm64 (2.26-1ubuntu0.1) ... Setting up libsoup2.4-1:arm64 (2.74.2-3ubuntu0.6) ... Setting up libblockdev-swap2:arm64 (2.26-1ubuntu0.1) ... Setting up libdjvulibre21:arm64 (3.5.28-2ubuntu0.22.04.1) ... Setting up libnss-systemd:arm64 (249.11-0ubuntu3.16) ... Setting up libblockdev-loop2:arm64 (2.26-1ubuntu0.1) ... Setting up ghostscript-x (9.55.0~dfsg1-0ubuntu5.12) ... Setting up libblockdev2:arm64 (2.26-1ubuntu0.1) ... Setting up libblockdev-part2:arm64 (2.26-1ubuntu0.1) ... Setting up python3.10-minimal (3.10.12-1~22.04.10) ... Setting up apport (2.20.11-0ubuntu82.9) ... apport-autoreport.service is a disabled or a static unit, not starting it. Setting up libpython3.10-stdlib:arm64 (3.10.12-1~22.04.10) ... Setting up python3-requests (2.25.1+dfsg-2ubuntu0.3) ... Setting up libblockdev-fs2:arm64 (2.26-1ubuntu0.1) ... Setting up git (1:2.34.1-1ubuntu1.15) ... Setting up libwebkit2gtk-4.0-37:arm64 (2.48.3-0ubuntu0.22.04.1) ... Setting up libpam-systemd:arm64 (249.11-0ubuntu3.16) ... Setting up ubuntu-advantage-tools (36ubuntu0~22.04) ... Setting up libsoup-gnome2.4-1:arm64 (2.74.2-3ubuntu0.6) ... Setting up udisks2 (2.9.4-1ubuntu2.2) ... Setting up libpython3.10:arm64 (3.10.12-1~22.04.10) ... Setting up python3.10 (3.10.12-1~22.04.10) ... Setting up gir1.2-soup-2.4:arm64 (2.74.2-3ubuntu0.6) ... Setting up libpython3.10-dev:arm64 (3.10.12-1~22.04.10) ... Setting up python3.10-dev (3.10.12-1~22.04.10) ... Setting up gir1.2-webkit2-4.0:arm64 (2.48.3-0ubuntu0.22.04.1) ... Processing triggers for hicolor-icon-theme (0.17-2) ... Processing triggers for doc-base (0.11.1) ... Processing 1 added doc-base file... Error in /usr/share/doc-base/libdvbv5-doc.libdvbv5-reference', line 9: all Format' sections are invalid. Note: install-docs --verbose --check file_name' may give more details about the above error. Processing triggers for gnome-menus (3.36.0-1ubuntu3) ... Processing triggers for libc-bin (2.35-0ubuntu3.10) ... Processing triggers for man-db (2.10.2-1) ... Processing triggers for dbus (1.12.20-2ubuntu4.1) ... Processing triggers for mailcap (3.70+nmu1ubuntu1) ... Processing triggers for bamfdaemon (0.5.6+22.04.20220217-0ubuntu1) ... Rebuilding /usr/share/applications/bamf-2.index... Processing triggers for desktop-file-utils (0.26-1ubuntu3) ... (base) casbot@casbot:~/ros_catkin_ws$ sudo sh -c 'echo "deb https://mirrors.ustc.edu.cn/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-noetic.list' sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). Executing: /tmp/apt-key-gpghome.6cqeROMOQT/gpg.1.sh --keyserver hkp://keyserver.ubuntu.com:80 --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 gpg: key F42ED6FBAB17C654: "Open Robotics <[email protected]>" not changed gpg: Total number processed: 1 gpg: unchanged: 1 (base) casbot@casbot:~/ros_catkin_ws$ sudo apt update # 安装桌面完整版(约 1.5GB,网络不稳定时分段安装) sudo apt install ros-noetic-desktop-full -y --allow-unauthenticated Ign:1 http://deb.repo.autolabor.com.cn jammy InRelease Ign:2 http://deb.repo.autolabor.com.cn jammy Release Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:6 https://mirrors.ustc.edu.cn/ros/ubuntu jammy InRelease Hit:4 http://deb.repo.autolabor.com.cn jammy/main amd64 Packages Err:7 https://mirrors.ustc.edu.cn/ros/ubuntu jammy Release 404 Not Found [IP: 202.141.176.110 443] Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Ign:3 http://deb.repo.autolabor.com.cn jammy/main all Packages Ign:5 http://deb.repo.autolabor.com.cn jammy/main Translation-en Hit:8 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy InRelease Hit:9 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-updates InRelease Hit:10 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-backports InRelease Hit:11 http://packages.ros.org/ros/ubuntu focal InRelease Hit:12 http://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports jammy-security InRelease Get:13 http://mirrors.tuna.tsinghua.edu.cn/ros2/ubuntu jammy InRelease [4682 B] Reading package lists... Done E: The repository 'https://mirrors.ustc.edu.cn/ros/ubuntu jammy Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. Reading package lists... Done Building dependency tree... Done Reading state information... Done 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: gazebo11 : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-iostreams1.71.0 but it is not installable Depends: libboost-program-options1.71.0 but it is not installable Depends: libboost-regex1.71.0-icu66 but it is not installable Depends: libboost-thread1.71.0 but it is not installable Depends: libgazebo11 (= 11.15.1-1~focal) but it is not going to be installed Depends: libignition-msgs5 (>= 5.11.0) but it is not going to be installed Depends: libignition-transport8 (>= 8.5.0) but it is not going to be installed Depends: libprotobuf17 but it is not installable Depends: gazebo11-common (>= 11.2.0) but it is not going to be installed Recommends: gazebo11-plugin-base but it is not going to be installed libgazebo11-dev : Depends: libignition-transport8-dev but it is not going to be installed Depends: libignition-msgs5-dev but it is not going to be installed Depends: libignition-fuel-tools4-dev but it is not going to be installed Depends: libignition-common3-dev but it is not going to be installed Depends: libignition-common3-graphics-dev but it is not going to be installed Depends: libdart6-collision-bullet-dev (< 6.10.0) but it is not installable or libdart-collision-bullet-dev (< 6.10.0) but it is not going to be installed Depends: libdart6-collision-ode-dev (< 6.10.0) but it is not installable or libdart-collision-ode-dev (< 6.10.0) but it is not going to be installed Depends: libdart6-utils-urdf-dev (< 6.10.0) but it is not installable or libdart-utils-urdf-dev (< 6.10.0) but it is not going to be installed Depends: libdart6-external-odelcpsolver-dev (< 6.10.0) but it is not installable or libdart-external-odelcpsolver-dev (< 6.10.0) but it is not going to be installed Depends: libdart6-external-ikfast-dev (< 6.10.0) but it is not installable or libdart-external-ikfast-dev (< 6.10.0) but it is not going to be installed Depends: libgazebo11 (= 11.15.1-1~focal) but it is not going to be installed Depends: gazebo11-common (>= 11.2.0) but it is not going to be installed Depends: gazebo11-plugin-base (= 11.15.1-1~focal) but it is not going to be installed libicu-dev : Depends: libicu70 (= 70.1-2) but 70.1-2ubuntu1 is to be installed libjsoncpp-dev : Depends: libjsoncpp25 (= 1.9.5-3) but 1.9.5-3ubuntu0.1 is to be installed ros-noetic-actionlib : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-actionlib-tutorials : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-bondcpp : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-camera-calibration-parsers : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-python1.71.0 but it is not installable Depends: libboost-python1.71.0-py38 but it is not installable Depends: libpython3.8 (>= 3.8.2) but it is not installable Depends: libyaml-cpp0.6 (>= 0.6.2) but it is not installable ros-noetic-class-loader : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libpocofoundation62 (>= 1.9.2) but it is not installable ros-noetic-compressed-depth-image-transport : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgcodecs4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-compressed-image-transport : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgcodecs4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-controller-manager : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-cpp-common : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-cv-bridge : Depends: libboost-python1.71.0 but it is not installable Depends: libboost-python1.71.0-py38 but it is not installable Depends: libboost-regex1.71.0-icu66 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgcodecs4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libpython3.8 (>= 3.8.2) but it is not installable ros-noetic-depth-image-proc : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-calib3d4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-diagnostic-aggregator : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-regex1.71.0-icu66 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-diagnostic-common-diagnostics : Depends: hddtemp but it is not installable ros-noetic-diff-drive-controller : Depends: libconsole-bridge0.4 but it is not installable Depends: liburdfdom-model but it is not installable ros-noetic-eigen-conversions : Depends: liborocos-kdl1.4 but it is not installable ros-noetic-filters : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-gazebo-plugins : Depends: libboost-thread1.71.0 but it is not installable Depends: libgazebo11 (>= 11.15.1) but it is not going to be installed Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libprotobuf17 but it is not installable ros-noetic-gazebo-ros : Depends: libboost-thread1.71.0 but it is not installable Depends: libgazebo11 (>= 11.15.1) but it is not going to be installed Depends: libprotobuf17 but it is not installable ros-noetic-gazebo-ros-control : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libgazebo11 (>= 11.15.1) but it is not going to be installed Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable Depends: ros-noetic-transmission-interface but it is not going to be installed ros-noetic-image-geometry : Depends: libopencv-calib3d4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-image-proc : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-image-publisher : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgcodecs4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-videoio4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-image-rotate : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-image-transport : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-image-view : Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-highgui4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgcodecs4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-videoio4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-interactive-markers : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-joint-state-controller : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-kdl-conversions : Depends: liborocos-kdl1.4 but it is not installable ros-noetic-kdl-parser : Depends: liborocos-kdl1.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable Depends: liburdfdom-model but it is not installable ros-noetic-laser-assembler : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-laser-filters : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-laser-geometry : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-nodelet : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-nodelet-tutorial-math : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-pcl-ros : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libpcl-common1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-features1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-filters1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-io1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-search1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-segmentation1.10 (>= 1.10.0+dfsg) but it is not installable Depends: libpcl-surface1.10 (>= 1.10.0+dfsg) but it is not installable ros-noetic-pluginlib : Depends: libboost-filesystem1.71.0 but it is not installable ros-noetic-pluginlib-tutorials : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-position-controllers : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-robot-state-publisher : Depends: liborocos-kdl1.4 but it is not installable Depends: liburdfdom-world but it is not installable ros-noetic-rosbag : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-program-options1.71.0 but it is not installable Depends: libboost-regex1.71.0-icu66 but it is not installable Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: ros-noetic-rosbag-storage but it is not going to be installed ros-noetic-rosconsole : Depends: libboost-regex1.71.0-icu66 but it is not installable Depends: liblog4cxx10v5 (>= 0.10.0) but it is not installable ros-noetic-rosconsole-bridge : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-roscpp : Depends: libboost-chrono1.71.0 but it is not installable Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-thread1.71.0 but it is not installable ros-noetic-roscpp-tutorials : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-rospack : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-program-options1.71.0 but it is not installable Depends: libpython3.8 (>= 3.8.2) but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable ros-noetic-rqt-image-view : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable Depends: ros-noetic-rqt-gui-cpp but it is not going to be installed ros-noetic-rqt-rviz : Depends: libboost-program-options1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: ros-noetic-rqt-gui-cpp but it is not going to be installed ros-noetic-rviz : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libboost-program-options1.71.0 but it is not installable Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable Depends: liburdfdom-world but it is not installable Depends: libyaml-cpp0.6 (>= 0.6.2) but it is not installable ros-noetic-rviz-plugin-tutorials : Depends: libboost-thread1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable ros-noetic-stage-ros : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-stereo-image-proc : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-calib3d4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-tf : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-tf-conversions : Depends: liborocos-kdl1.4 but it is not installable ros-noetic-tf2 : Depends: libconsole-bridge0.4 but it is not installable ros-noetic-tf2-ros : Depends: libboost-thread1.71.0 but it is not installable Depends: ros-noetic-tf2-py but it is not going to be installed ros-noetic-theora-image-transport : Depends: libconsole-bridge0.4 but it is not installable Depends: libopencv-core4.2 (>= 4.2.0+dfsg) but it is not installable Depends: libopencv-imgproc4.2 (>= 4.2.0+dfsg) but it is not installable ros-noetic-turtle-actionlib : Depends: libboost-thread1.71.0 but it is not installable ros-noetic-urdf : Depends: libboost-filesystem1.71.0 but it is not installable Depends: libconsole-bridge0.4 but it is not installable Depends: libtinyxml2-6a (>= 5.0.0) but it is not installable Depends: liburdfdom-model but it is not installable E: Unable to correct problems, you have held broken packages.我执行到第三步后出现报错,请在此基础上给我能够成功安装ros1的操作步骤

yuan@yuan-virtual-machine:~/桌面/catkin_ws$ sudo rm -rf ~/.ros/rosdep/sources.cache yuan@yuan-virtual-machine:~/桌面/catkin_ws$ sudo rosdep init ERROR: default sources list file already exists: /etc/ros/rosdep/sources.list.d/20-default.list Please delete if you wish to re-initialize yuan@yuan-virtual-machine:~/桌面/catkin_ws$ rosdep update reading in sources list data from /etc/ros/rosdep/sources.list.d Hit https://mirrors.ustc.edu.cn/rosdistro/rosdep/osx-homebrew.yaml Hit https://mirrors.ustc.edu.cn/rosdistro/rosdep/base.yaml Hit https://mirrors.ustc.edu.cn/rosdistro/rosdep/python.yaml Hit https://mirrors.ustc.edu.cn/rosdistro/rosdep/ruby.yaml ERROR: unable to process source [https://mirrors.ustc.edu.cn/rosdistro/rosdep/releases/fuerte.yaml]: Failed to download target platform data for gbpdistro: HTTP Error 404: Not Found Query rosdistro index https://raw.githubusercontent.com/ros/rosdistro/master/index-v4.yaml Skip end-of-life distro "ardent" Skip end-of-life distro "bouncy" Skip end-of-life distro "crystal" Skip end-of-life distro "dashing" Skip end-of-life distro "eloquent" Skip end-of-life distro "foxy" Skip end-of-life distro "galactic" Skip end-of-life distro "groovy" Add distro "humble" Skip end-of-life distro "hydro" Skip end-of-life distro "indigo" Skip end-of-life distro "iron" Skip end-of-life distro "jade" Add distro "jazzy" Add distro "kilted" Skip end-of-life distro "kinetic" Skip end-of-life distro "lunar" Skip end-of-life distro "melodic" Skip end-of-life distro "noetic" Add distro "rolling" updated cache in /home/yuan/.ros/rosdep/sources.cache ERROR: Not all sources were able to be updated. [[[ ERROR: unable to process source [https://mirrors.ustc.edu.cn/rosdistro/rosdep/releases/fuerte.yaml]: Failed to download target platform data for gbpdistro: HTTP Error 404: Not Found ]]]

最新推荐

recommend-type

使用Nginx实现负载均衡配置详解.doc

使用Nginx实现负载均衡配置详解.doc
recommend-type

Mockingbird v2:PocketMine-MP新防作弊机制详解

标题和描述中所涉及的知识点如下: 1. Mockingbird反作弊系统: Mockingbird是一个正在开发中的反作弊系统,专门针对PocketMine-MP服务器。PocketMine-MP是Minecraft Pocket Edition(Minecraft PE)的一个服务器软件,允许玩家在移动平台上共同游戏。随着游戏的普及,作弊问题也随之而来,因此Mockingbird的出现正是为了应对这种情况。 2. Mockingbird的版本迭代: 从描述中提到的“Mockingbird的v1变体”和“v2版本”的变化来看,Mockingbird正在经历持续的开发和改进过程。软件版本迭代是常见的开发实践,有助于修复已知问题,改善性能和用户体验,添加新功能等。 3. 服务器性能要求: 描述中强调了运行Mockingbird的服务器需要具备一定的性能,例如提及“WitherHosting的$ 1.25计划”,这暗示了反作弊系统对服务器资源的需求较高。这可能是因为反作弊机制需要频繁处理大量的数据和事件,以便及时检测和阻止作弊行为。 4. Waterdog问题: Waterdog是另一种Minecraft服务器软件,特别适合 PocketMine-MP。描述中提到如果将Mockingbird和Waterdog结合使用可能会遇到问题,这可能是因为两者在某些机制上的不兼容或Mockingbird对Waterdog的特定实现尚未完全优化。 5. GitHub使用及问题反馈: 作者鼓励用户通过GitHub问题跟踪系统来报告问题、旁路和功能建议。这是一个公共代码托管平台,广泛用于开源项目协作,便于开发者和用户进行沟通和问题管理。作者还提到请用户在GitHub上发布问题而不是在评论区留下不好的评论,这体现了良好的社区维护和用户交流的实践。 6. 软件标签: “pocketmine”和“anticheat”(反作弊)作为标签,说明Mockingbird是一个特别为PocketMine-MP平台开发的反作弊软件。而“PHP”则可能指的是Mockingbird的开发语言,虽然这个信息与常见的Java或C++等开发Minecraft相关软件的语言不同,但并不排除使用PHP进行服务器端开发的可能性,尤其是对于处理动态网页、服务器端脚本等场景。 7. 压缩包文件: “Mockingbird-stable”是一个文件名称,很可能表示这是一个包含最新稳定版Mockingbird反作弊系统的压缩包。通常,这样的文件名中包含“stable”意味着这是一个经过充分测试且推荐用于生产环境的版本。 8. 社区协作和用户参与: 特别感谢部分提到了shur,这可能是对某位贡献者或社区成员的感激之情。这种感谢表明了软件开发不仅是开发者个人的劳动成果,同时也依赖于社区的支持和参与,包括提供反馈、报告问题、贡献代码和文档等。 总结以上内容,我们可以看到Mockingbird作为一款反作弊系统,其开发和维护需要依赖于社区的广泛参与和支持,同时还需要强大的服务器后端作为支撑。通过不断迭代更新版本,开发者希望解决现有问题,提高反作弊效率,并希望与社区保持良好的沟通,以持续优化产品。
recommend-type

“历史人物独白解说”视频:数据处理的6种革命性技术

# 1. 数据处理的历史回顾与技术演进 数据处理的历史,从最初的简单机械记录,到如今复杂的数据处理体系,不仅反映了技术的演进,也映射了人类社会进步的轨迹。在计算机技术发展初期,数据处理主要依靠打孔卡片和磁带,通过批处理的方式进行,效率低下且出错率高。随着技术的发展,上世纪70年代,关系型数据库的出现大大提高了数据处理的效率和准确性,为数据处理技术的发展奠定了基础。 随后,随着互
recommend-type

怎么判断多级运放电路的稳定性?

<think>首先,用户的问题是关于判断多级运算放大器电路的稳定性。我需要根据系统级指令来构建回答。 系统级指令: - 所有行内数学表达式必须使用$...$格式。 - 独立公式必须使用$$...$$格式并单独成段。 - LaTeX语法正确。 - 使用中文回答。 - 生成相关问题。 - 在回答中引用的段落末尾自然地添加引用标识,例如[^1]。 用户可见层指令: - 回答结构清晰,帮助用户逐步解决问题。 - 尽量保证回答真实可靠。 参考引用: - 引用[1]:关于集成运算放大电路的设计、组成和性能评估。 - 引用[2]:高频电路中运放的带宽限制,一级放大电路的增益通常为100倍,过高会引起振
recommend-type

利用AHP和节点集中度解决影响力最大化问题的Flask应用教程

从给定的文件信息中,我们可以提取以下相关知识点进行详细说明: ### 标题知识点 **IM问题与AHP结合** IM问题(Influence Maximization)是网络分析中的一个核心问题,旨在识别影响网络中信息传播的关键节点。为了求解IM问题,研究者们常常结合使用不同的算法和策略,其中AHP(Analytic Hierarchy Process,分析层次结构过程)作为一种决策分析方法,被用于评估网络节点的重要性。AHP通过建立层次模型,对各个因素进行比较排序,从而量化影响度,并通过一致性检验保证决策结果的有效性。将AHP应用于IM问题,意味着将分析网络节点影响的多个维度,比如节点的中心性(centrality)和影响力。 **集中度措施** 集中度(Centralization)是衡量网络节点分布状况的指标,它反映了网络中节点之间的连接关系。在网络分析中,集中度常用于识别网络中的“枢纽”或“中心”节点。例如,通过计算网络的度中心度(degree centrality)可以了解节点与其他节点的直接连接数量;接近中心度(closeness centrality)衡量节点到网络中其他所有节点的平均距离;中介中心度(betweenness centrality)衡量节点在连接网络中其他节点对的最短路径上的出现频率。集中度高意味着节点在网络中处于重要位置,对信息的流动和控制具有较大影响力。 ### 描述知识点 **Flask框架** Flask是一个轻量级的Web应用框架,它使用Python编程语言开发。它非常适合快速开发小型Web应用,以及作为微服务架构的一部分。Flask的一个核心特点是“微”,意味着它提供了基本的Web开发功能,同时保持了框架的小巧和灵活。Flask内置了开发服务器,支持Werkzeug WSGI工具包和Jinja2模板引擎,提供了RESTful请求分发和请求钩子等功能。 **应用布局** 一个典型的Flask应用会包含以下几个关键部分: - `app/`:这是应用的核心目录,包含了路由设置、视图函数、模型和控制器等代码文件。 - `static/`:存放静态文件,比如CSS样式表、JavaScript文件和图片等,这些文件的内容不会改变。 - `templates/`:存放HTML模板文件,Flask将使用这些模板渲染最终的HTML页面。模板语言通常是Jinja2。 - `wsgi.py`:WSGI(Web Server Gateway Interface)是Python应用程序和Web服务器之间的一种标准接口。这个文件通常用于部署到生产服务器时,作为应用的入口点。 **部署到Heroku** Heroku是一个支持多种编程语言的云平台即服务(PaaS),它允许开发者轻松部署、运行和管理应用。部署Flask应用到Heroku,需要几个步骤:首先,创建一个Procfile文件,告知Heroku如何启动应用;其次,确保应用的依赖关系被正确管理,通常通过一个requirements.txt文件列出所有依赖;最后,使用Git将应用推送到Heroku提供的仓库,Heroku会自动识别Procfile并开始部署过程。 ### 标签知识点 **HTML** HTML(HyperText Markup Language,超文本标记语言)是用于创建网页和Web应用的标准标记语言。它定义了网页的结构和内容。HTML文件由一系列元素组成,这些元素通过标签(tags)来表示,如`<p>`代表段落,`<a>`代表链接,`<img>`代表图像等。HTML5是当前使用的最新版本,支持更多的特性,如离线存储、多媒体和图形等。 ### 压缩包子文件的文件名称列表知识点 **IMproblem-using-AHP-and-centralisation-of-nodes-master** 这里的文件名称“IMproblem-using-AHP-and-centralisation-of-nodes-master”表明了一个GitHub仓库的名称,其中包含了源代码以及与项目相关的所有文件。从名称中可以看出,该仓库是关于如何结合AHP和节点集中度分析来解决IM问题的Flask应用程序。文件名中的“master”表明这是仓库的主分支(现在叫做main分支),它是项目最新的、可部署的代码版本。 综合来看,本段信息为我们提供了构建和部署一个使用Flask框架、针对IM问题使用AHP和节点集中度分析的Web应用的方法和步骤。同时,介绍了应用在不同环节中所需技术和组件的详细知识点。
recommend-type

视频内容自动生成算法:突破性的8大最新进展

# 1. 视频内容自动生成算法概述 ## 算法发展背景 随着人工智能技术的迅速发展,视频内容自动生成算法已经成为媒体和娱乐行业的重要工具。这些算法能够自动编辑和合成视频内容,使内容创作者能够以较低的成本和时间生成高质量的视频。从社交媒体动态到在线教育内容,视频内容自动生成的应用场景正在不断扩大。 ## 核心技术简述 视
recommend-type

Softmax函数实际应用举例

<think>嗯,用户现在想了解Softmax函数的实际应用场景,这和我之前详细解释过的Softmax原理是直接相关的。用户特意提到要参考站内引用,看来是想看到具体案例支撑。 从用户提问方式看,ta应该已经理解了Softmax的基本数学原理(毕竟我上次用向量[2,1,0.1]的例子详细演示过计算过程),现在需要落地到实践层面。这种从理论到应用的递进很合理,可能是个正在学习机器学习的学生,或者需要解决实际问题的工程师。 我注意到用户提供的引用里有些关键线索:引用[1]提到图像分类和概率解释,引用[4]强调指数放大的特性,引用[5]则对比了Sigmoid在多标签分类的应用差异。这些正好能支撑我
recommend-type

WDI项目1:PriceIsRight游戏开发实践

### 标题解析 标题“price-is-right:WDI项目1-PriceIsRight游戏”表明这是一个名为“Price Is Right”的游戏项目,这是WDI(Web Development Immersive,全栈网页开发沉浸式课程)的第一个项目。WDI是一种常用于IT培训机构的课程名称,旨在通过实战项目来培养学员的全栈网页开发能力。 ### 描述解析 描述中提到,该游戏的目的是为了练习基本的JavaScript技能。这表明游戏被设计成一个编程练习,让开发者通过实现游戏逻辑来加深对JavaScript的理解。描述中也提到了游戏是一个支持两个玩家的版本,包含了分配得分、跟踪得分以及宣布获胜者等逻辑,这是游戏开发中常见的功能实现。 开发者还提到使用了Bootstrap框架来增加网站的可伸缩性。Bootstrap是一个流行的前端框架,它让网页设计和开发工作更加高效,通过提供预设的CSS样式和JavaScript组件,让开发者能够快速创建出响应式的网站布局。此外,开发者还使用了HTML5和CSS进行网站设计,这表明项目也涉及到了前端开发的基础技能。 ### 标签解析 标签“JavaScript”指出了该游戏中核心编程语言的使用。JavaScript是一种高级编程语言,常用于网页开发中,负责实现网页上的动态效果和交互功能。通过使用JavaScript,开发者可以在不离开浏览器的情况下实现复杂的游戏逻辑和用户界面交互。 ### 文件名称解析 压缩包子文件的文件名称列表中仅提供了一个条目:“price-is-right-master”。这里的“master”可能指明了这是项目的主分支或者主版本,通常在版本控制系统(如Git)中使用。文件名中的“price-is-right”与标题相呼应,表明该文件夹内包含的代码和资源是与“Price Is Right”游戏相关的。 ### 知识点总结 #### 1. JavaScript基础 - **变量和数据类型**:用于存储得分等信息。 - **函数和方法**:用于实现游戏逻辑,如分配得分、更新分数。 - **控制结构**:如if-else语句和循环,用于实现游戏流程控制。 - **事件处理**:监听玩家的输入(如点击按钮)和游戏状态的变化。 #### 2. Bootstrap框架 - **网格系统**:实现响应式布局,让游戏界面在不同设备上都能良好展示。 - **预设组件**:可能包括按钮、表单、警告框等,用于快速开发用户界面。 - **定制样式**:根据需要自定义组件样式来符合游戏主题。 #### 3. HTML5与CSS - **语义化标签**:使用HTML5提供的新标签来构建页面结构,如`<header>`, `<section>`, `<footer>`等。 - **CSS布局**:使用Flexbox或Grid等布局技术对页面元素进行定位和排版。 - **样式设计**:通过CSS为游戏界面增添美观的视觉效果。 #### 4. 项目结构和版本控制 - **主分支管理**:`master`分支通常保存着项目的稳定版本,用于部署生产环境。 - **代码组织**:合理的文件结构有助于维护和扩展项目。 #### 5. 前端开发最佳实践 - **分离关注点**:将样式、脚本和内容分离,确保代码清晰易维护。 - **响应式设计**:确保游戏在多种设备和屏幕尺寸上均有良好的用户体验。 - **可访问性**:考虑键盘导航、屏幕阅读器等无障碍功能,让游戏更加友好。 #### 6. 交互式游戏开发 - **游戏逻辑实现**:创建一个简单的游戏循环,管理玩家输入和得分更新。 - **状态管理**:游戏中的得分和其他游戏状态需要妥善保存和更新。 - **用户界面反馈**:提供即时的视觉和听觉反馈,增强玩家体验。 通过上述知识点的解析,可以看出“Price Is Right”游戏项目不仅仅是一个简单的编程练习,它还融合了多种前端技术,包括JavaScript、Bootstrap、HTML5和CSS,以实现一个完整的、可交互的游戏体验。此项目也反映了开发者在掌握前端开发技能的同时,了解了如何组织代码、维护项目结构和实践开发最佳实践。
recommend-type

人工智能视频编辑:如何利用技术进步提升内容创作质量

# 1. 人工智能视频编辑概述 随着人工智能技术的飞速发展,视频编辑领域正在经历一场前所未有的革命。AI的介入,不仅极大地提升了视频编辑的效率,还赋予了内容创作者全新的表达方式。本章旨在概述人工智能视频编辑的概念、发展历程和当前的应用现状,为读者提供一个全面而深入的了解。 ## 1.1 人工智能视频编辑的兴起 人工智能视频编辑是将先进的机器学习算法与传统视频处理技术相
recommend-type

反激变换器

<think>首先,用户意图是了解反激变换器的工作原理或设计方法。用户的问题是:“反激变换器工作原理及设计指南”。所以我需要基于这个意图和问题,通过调用网络搜索工具进行检索。 我的任务是: 1. 调用网络搜索工具来检索相关内容。 2. 整合检索到的内容,生成详细、清晰、实用、可操作的回答。 3. 禁止将所有引用内容集中在回答末尾;引用应该融入回答中。 4. 避免使用第一人称如“我”。 5. 避免步骤词汇如“首先”、“然后”。 6. 将答案组织为多个方法或步骤,并在每个步骤间换行。 7. 对于代码和公式,遵循特定格式: - 行内公式:$公式内容$ - 独立公式:$$公式内容$$