bash: ./t64: 没有那个文件或目录

1.概要

2.内容

1.bash: ./t64: 没有那个文件或目录

错误信息 "bash: ./t64: 没有那个文件或目录" 表示在当前的目录下,bash 无法找到名为 t64 的文件或目录。这可能是由以下几个原因引起的:

  1. 文件或目录不存在
    • 确保你当前所在的目录确实包含名为 t64 的文件或目录。
    • 使用 ls 命令查看当前目录的内容,确认 t64 是否存在。
  2. 路径错误
    • 如果你不在包含 t64 的目录中,你需要切换到正确的目录。可以使用 cd 命令来切换目录。
    • 也可以使用绝对路径直接访问 t64,例如 /path/to/t64
  3. 权限问题
    • 确保你有足够的权限访问 t64。如果文件或目录存在但是没有权限,你可能无法看到它。
    • 使用 ls -l 可以查看文件和目录的权限。
  4. 文件是一个可执行脚本但没有执行权限
    • 如果 t64 是一个脚本,确保它有执行权限。
    • 你可以使用 chmod +x t64 命令来添加执行权限。
  5. 错误的解释器路径
    • 如果 t64 是一个脚本,并且在脚本的顶部指定了错误的解释器路径(如 #!/bin/falsepath),系统也会报告找不到文件或目录的错误。
    • 检查脚本的第一行,确保指定的解释器路径是正确的。
  6. 二进制文件格式不兼容或损坏
    • 如果 t64 是一个二进制文件,确保该文件没有损坏,且是为你的系统架构编译的。

解决步骤:

  • 首先,确认当前目录是否正确。
  • 使用 ls -l 查看文件和目录的详细列表。
  • 如果文件存在但无法执行,检查权限和文件类型。
  • 如果是脚本,检查第一行的解释器路径和脚本的权限。

如果以上步骤都无法解决问题,可能需要更详细地检查文件 t64 的来源和用途,或者联系文件的提供者获取帮助。

2.t64是我用交叉编译器编译的程序,结果运行报上面的问题,如何确认问题原因呢 

当你使用交叉编译器编译的程序 t64 在运行时报告 "bash: ./t64: 没有那个文件或目录" 的错误时,这通常意味着系统无法找到或无法执行该文件。针对这种情况,可以按照以下步骤来确认问题原因:

1. 确认文件存在性

  • 使用 ls -l 命令列出当前目录下的所有文件和目录,确认 t64 文件是否确实存在。

2. 检查文件权限

  • 使用 ls -l t64 查看 t64 文件的权限设置。确保文件具有执行权限(在权限位中应有 x)。
  • 如果没有执行权限,可以使用 chmod +x t64 命令添加执行权限。

3. 确认文件路径

  • 确保你在正确的目录下运行 t64。使用 pwd 命令查看当前工作目录。
  • 如果 t64 不在当前目录,你需要切换到包含该文件的目录,或者使用文件的绝对路径来运行它。

4. 检查文件类型

  • 使用 file t64 命令查看 t64 文件的类型。确认它是一个可执行文件。

5. 确认解释器路径(如果适用)

  • 如果 t64 是一个脚本文件,检查脚本文件的第一行(shebang 行),确保它指定的解释器路径是正确的。

6. 确认交叉编译环境

  • 由于 t64 是用交叉编译器编译的,确保你的系统环境已经正确设置了交叉编译工具链。
  • 检查环境变量如 PATH 是否包含了交叉编译器的路径。

7. 确认目标架构兼容性

  • 确保你编译的 t64 程序是为目标平台的架构编译的,而不是为你的主机平台编译的。
  • 如果目标平台是嵌入式系统或其他非标准架构,确保你的主机系统能够模拟或支持该架构的执行环境。

8. 检查系统兼容库

  • 如果 t64 依赖于特定的库文件,确保这些库文件已经正确安装在系统上,并且路径被包含在库搜索路径中(如 LD_LIBRARY_PATH 环境变量)。

9. 使用strace调试

  • 使用 strace ./t64 命令来跟踪系统调用和信号。这可以帮助你了解系统在尝试执行 t64 时发生了什么,以及为何会报告 "没有那个文件或目录" 的错误。

10. 检查错误消息和日志

  • 仔细检查任何与 t64 相关的错误消息和系统日志,以获取更多关于问题的线索。

通过上述步骤,你应该能够诊断出为什么 t64 在运行时报告 "bash: ./t64: 没有那个文件或目录" 的错误。如果问题仍然存在,可能需要更详细地检查你的交叉编译环境或寻求更专业的帮助。

3.bash: strace: 未找到命令 

如果你在运行 strace ./t64 时收到 “bash: strace: 未找到命令” 的错误,这表示你的系统上未安装 strace 工具。strace 是一个用于跟踪系统调用和信号的工具,它可以帮助你诊断程序在运行时遇到的问题。

要解决这个问题,你需要安装 strace。安装方法取决于你使用的操作系统。以下是一些常见操作系统上安装 strace 的方法:

对于基于 Debian 的系统(如 Ubuntu):

sudo apt-get update
sudo apt-get install strace

对于基于 Red Hat 的系统(如 CentOS、Fedora):

sudo yum install strace # CentOS 7 或更早版本
sudo dnf install strace # CentOS 8、Fedora 等较新版本

对于 Arch Linux:

sudo pacman -S strace

对于其他 Linux 发行版:

请查阅你的发行版的包管理器文档,了解如何安装 strace

一旦安装了 strace,你就可以使用它来跟踪 t64 的系统调用了。运行以下命令:

strace ./t64

这将显示 t64 在尝试执行时所做的所有系统调用,以及这些调用的返回值。通过观察这些输出,你可能会发现导致 “没有那个文件或目录” 错误的原因。

请注意,如果 t64 是一个交叉编译的程序,且你的系统环境与目标环境不同,strace 可能无法完全准确地反映程序在目标环境中的行为。在这种情况下,你可能需要在目标环境上运行 strace,或者使用一个能够模拟目标环境的调试工具。

 

:66 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 linux-libc-dev amd64 6.8.0-84.84 错误:67 http://cn.archive.ubuntu.com/ubuntu noble-updates/main amd64 linux-tools-6.14.0-32-generic amd64 6.14.0-32.32~24.04.1 403 Forbidden [IP: 101.6.15.130 80] 错误:68 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 mesa-vulkan-drivers amd64 25.0.7-0ubuntu0.24.04.2 403 Forbidden [IP: 101.6.15.130 80] 忽略:69 http://cn.archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip all 24.0+dfsg-1ubuntu1.3 错误:70 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 software-properties-common all 0.99.49.3 403 Forbidden [IP: 101.6.15.130 80] 错误:71 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 software-properties-gtk all 0.99.49.3 403 Forbidden [IP: 101.6.15.130 80] 错误:72 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 python3-software-properties all 0.99.49.3 403 Forbidden [IP: 101.6.15.130 80] 错误:73 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 tecla amd64 46.0-1ubuntu0.1 403 Forbidden [IP: 101.6.15.130 80] 错误:74 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 xserver-xorg-video-nouveau amd64 1:1.0.17-2ubuntu0.1 403 Forbidden [IP: 101.6.15.130 80] 错误:75 http://mirrors.tuna.tsinghua.edu.cn/ubuntu noble-updates/main amd64 xserver-xorg-video-vesa amd64 1:2.6.0-1ubuntu0.1 403 Forbidden [IP: 101.6.15.130 80] 获取:16 http://security.ubuntu.com/ubuntu noble-updates/main amd64 dpkg-dev all 1.22.6ubuntu6.5 [1,074 kB] 获取:17 http://security.ubuntu.com/ubuntu noble-updates/main amd64 libdpkg-perl all 1.22.6ubuntu6.5 [269 kB] 获取:64 http://security.ubuntu.com/ubuntu noble-updates/main amd64 linux-tools-common all 6.8.0-84.84 [761 kB] 获取:66 http://security.ubuntu.com/ubuntu noble-updates/main amd64 linux-libc-dev amd64 6.8.0-84.84 [1,921 kB] 获取:69 http://cn.archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip all 24.0+dfsg-1ubuntu1.3 [1,320 kB] 已下载 6,627 kB,耗时 4秒 (1,697 kB/s) E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/c/coreutils/coreutils_9.4-3ubuntu6.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bluez/bluez_5.72-0ubuntu5.4_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/systemd-hwe/systemd-hwe-hwdb_255.1.5_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bind9/bind9-host_9.18.39-0ubuntu0.24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bind9/bind9-dnsutils_9.18.39-0ubuntu0.24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bind9/bind9-libs_9.18.39-0ubuntu0.24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/o/openssh/openssh-client_9.6p1-3ubuntu13.14_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/p/powermgmt-base/powermgmt-base_1.37ubuntu0.1_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bluez/bluez-cups_5.72-0ubuntu5.4_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bluez/bluez-obexd_5.72-0ubuntu5.4_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/d/dconf/dconf-gsettings-backend_0.40.0-4ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/d/dconf/dconf-service_0.40.0-4ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/d/dconf/dconf-cli_0.40.0-4ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/d/dconf/libdconf1_0.40.0-4ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/f/firmware-sof/firmware-sof-signed_2023.12.1-1ubuntu1.9_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/f/fwupd/libfwupd2_1.9.31-0ubuntu1~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/f/fwupd/fwupd_1.9.31-0ubuntu1~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gtk4/libgtk-4-common_4.14.5+ds-0ubuntu0.5_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gtk4/libgtk-4-1_4.14.5+ds-0ubuntu0.5_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gtk4/gir1.2-gtk-4.0_4.14.5+ds-0ubuntu0.5_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gnome-shell-extension-desktop-icons-ng/gnome-shell-extension-desktop-icons-ng_46+really47.0.9-1ubuntu4_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/b/bluez/libbluetooth3_5.72-0ubuntu5.4_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/libgl1-mesa-dri_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/libglx-mesa0_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/llvm-toolchain-20/libllvm20_20.1.2-0ubuntu1~24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/libegl-mesa0_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/libgbm1_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/mesa-libgallium_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gtk4/libgtk-4-bin_4.14.5+ds-0ubuntu0.5_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/g/gtk4/libgtk-4-media-gstreamer_4.14.5+ds-0ubuntu0.5_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/samba/libsmbclient0_4.19.5+dfsg-4ubuntu9.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/samba/libldb2_2.8.0+samba4.19.5+dfsg-4ubuntu9.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/samba/samba-libs_4.19.5+dfsg-4ubuntu9.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/samba/libwbclient0_4.19.5+dfsg-4ubuntu9.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/python3-sss_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libsss-certmap0_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-proxy_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-krb5_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-ad_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-ldap_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-ipa_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-krb5-common_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-ad-common_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/sssd-common_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libnss-sss_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libpam-sss_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libsss-nss-idmap0_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libsss-idmap0_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/sssd/libipa-hbac0t64_2.9.4-1.1ubuntu6.3_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/malcontent/libmalcontent-0-0_0.11.1-1ubuntu1.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/libxatracker2_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-modules-6.14.0-32-generic_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-signed-hwe-6.14/linux-image-6.14.0-32-generic_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-modules-extra-6.14.0-32-generic_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-meta-hwe-6.14/linux-generic-hwe-24.04_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-meta-hwe-6.14/linux-image-generic-hwe-24.04_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-hwe-6.14-headers-6.14.0-32_6.14.0-32.32~24.04.1_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-headers-6.14.0-32-generic_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-meta-hwe-6.14/linux-headers-generic-hwe-24.04_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-hwe-6.14-tools-6.14.0-32_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/l/linux-hwe-6.14/linux-tools-6.14.0-32-generic_6.14.0-32.32~24.04.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/m/mesa/mesa-vulkan-drivers_25.0.7-0ubuntu0.24.04.2_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/software-properties/software-properties-common_0.99.49.3_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/software-properties/software-properties-gtk_0.99.49.3_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/s/software-properties/python3-software-properties_0.99.49.3_all.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/t/tecla/tecla_46.0-1ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_1.0.17-2ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 无法下载 http://mirrors.tuna.tsinghua.edu.cn/ubuntu/pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.6.0-1ubuntu0.1_amd64.deb 403 Forbidden [IP: 101.6.15.130 80] E: 有几个软件包无法下载,要不运行 apt-get update 者加上 --fix-missing 的选项再试试?
09-27
connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/l/llvm-toolchain-19/clang-tools-19_19.1.7-3+b1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/l/llvm-toolchain-19/llvm-19-tools_19.1.7-3+b1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/s/samba/libtevent0t64_0.16.2+samba4.22.2+dfsg-1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/s/samba/samba-libs_4.22.2+dfsg-1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/c/cups/libcups2t64_2.4.10-3_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/s/samba/python3-talloc_2.4.3+samba4.22.2+dfsg-1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/c/cron/cron-daemon-common_3.0pl1-197_all.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/b/busybox/busybox_1.37.0-6+b1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/l/llvm-toolchain-18/clang-18_18.1.8-18+b1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/k/kali-themes/kali-desktop-base_2025.3.1_all.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/p/python-redis/python3-redis_6.1.0-2_all.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/libb/libblockdev/libblockdev-crypto3_3.3.0-2.1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/i/ipp-usb/ipp-usb_0.9.23-2+b7_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/p/python-virtualenv/python3-virtualenv_20.31.2+ds-1_all.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/q/qt6-base/libqt6core6t64_6.8.2+dfsg-7_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/q/qt6-base/libqt6widgets6_6.8.2+dfsg-7_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/k/kali-meta/kali-linux-firmware_2025.3.1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/b/bluez/libbluetooth3_5.82-1.1_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 无法下载 http://mirror.twds.com.tw/kali/pool/main/n/nginx/nginx_1.26.3-3_amd64.deb 无法发起与 mirror.twds.com.tw:80 (2405:a640::36) 的连接。 - connect (101: 网络不可达) [IP: 103.147.22.36 80] 错误: 无法下载 https://deny.krfoss.org/ 403 Forbidden [IP: 172.67.28.45 443] 错误: 有几个软件包无法下载,要不运行 apt-get update 者加上 --fix-missing 的选项再试试?
07-10
ontinue? [Y/n] Y Get:1 http://kali.download/kali kali-last-snapshot/main amd64 libavahi-common-data amd64 0.8-16 [112 kB] Get:2 http://kali.download/kali kali-last-snapshot/main amd64 libgck-2-2 amd64 4.4.0.1-3 [73.7 kB] Get:3 http://kali.download/kali kali-last-snapshot/main amd64 libpangocairo-1.0-0 amd64 1.56.3-1 [35.7 kB] Get:4 http://http.kali.org/kali kali-last-snapshot/main amd64 libopencore-amrwb0 amd64 0.1.6-1+b2 [53.6 kB] Get:5 http://http.kali.org/kali kali-last-snapshot/main amd64 libtheora0 amd64 1.2.0~alpha1+dfsg-6 [135 kB] Get:6 http://http.kali.org/kali kali-last-snapshot/main amd64 libhyphen0 amd64 2.8.8-7+b2 [30.7 kB] Get:7 http://http.kali.org/kali kali-last-snapshot/main amd64 libxft2 amd64 2.3.6-1+b4 [54.5 kB] Get:8 http://kali.download/kali kali-last-snapshot/main amd64 libpangoxft-1.0-0 amd64 1.56.3-1 [27.6 kB] Get:9 http://http.kali.org/kali kali-last-snapshot/main amd64 cracklib-runtime amd64 2.9.6-5.2+b1 [143 kB] Get:10 http://kali.download/kali kali-last-snapshot/main amd64 libblockdev-nvme3 amd64 3.3.0-2 [22.3 kB] Get:11 http://kali.download/kali kali-last-snapshot/main amd64 gnome-keyring-pkcs11 amd64 48.0-1 [28.0 kB] Get:12 http://kali.download/kali kali-last-snapshot/main amd64 libqrencode4 amd64 4.1.1-2 [39.8 kB] Get:13 http://kali.download/kali kali-last-snapshot/main amd64 libzbar0t64 amd64 0.23.93-8 [134 kB] Get:14 http://http.kali.org/kali kali-last-snapshot/main amd64 libimobiledevice-1.0-6 amd64 1.3.0+git20250228-2 [135 kB] Get:15 http://http.kali.org/kali kali-last-snapshot/main amd64 libigdgmm12 amd64 22.7.1+ds1-1 [177 kB] Get:16 http://kali.download/kali kali-last-snapshot/main amd64 libglib2.0-data all 2.84.1-2 [1,284 kB] Get:17 http://kali.download/kali kali-last-snapshot/main amd64 mate-calc-common all 1.26.0-1 [556 kB] Get:18 http://kali.download/kali kali-last-snapshot/main amd64 libspeexdsp1 amd64 1.2.1-3 [42.9 kB] Get:19 http://http.kali.org/kali kali-last-snapshot/main amd64 libsonic0 amd64 0.2.0-13+b1 [10.3 kB] Ign:20 http://http.kali.org/kali kali-last-snapshot/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.12+dfsg-2 Ign:20 http://http.kali.org/kali kali-last-snapshot/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.12+dfsg-2 Ign:20 http://http.kali.org/kali kali-last-snapshot/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.12+dfsg-2 Err:20 http://http.kali.org/kali kali-last-snapshot/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.12+dfsg-2 Cannot initiate the connection to mirror.kku.ac.th:80 (2001:3c8:c108:2895::2). - connect (101: Network is unreachable) Could not connect to mirror.kku.ac.th:80 (202.28.95.174), connection timed out Cannot initiate the connection to mirror.kku.ac.th:80 (2001:3c8:c108:2895::2). - connect (101: Network is unreachable) Fetched 3,095 kB in 39s (79.7 kB/s) Error: Failed to fetch http://mirror.kku.ac.th/kali/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-bin_2.42.12+dfsg-2_amd64.deb Cannot initiate the connection to mirror.kku.ac.th:80 (2001:3c8:c108:2895::2). - connect (101: Network is unreachable) Error: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
07-07
starying@LAPTOP-HT19I0UF:/mnt/c/Users/13636$ sudo apt install -y x11-utils [sudo] password for starying: Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: libice6 libsm6 libxaw7 libxcb-shape0 libxft2 libxkbfile1 libxmu6 libxpm4 libxt6t64 libxxf86dga1 Suggested packages: mesa-utils Recommended packages: luit The following NEW packages will be installed: libice6 libsm6 libxaw7 libxcb-shape0 libxft2 libxkbfile1 libxmu6 libxpm4 libxt6t64 libxxf86dga1 x11-utils 0 upgraded, 11 newly installed, 0 to remove and 31 not upgraded. Need to get 821 kB of archives. After this operation, 2398 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu noble/main amd64 libice6 amd64 2:1.0.10-1build3 [41.4 kB] Get:2 http://archive.ubuntu.com/ubuntu noble/main amd64 libsm6 amd64 2:1.2.3-1build3 [15.7 kB] Get:3 http://archive.ubuntu.com/ubuntu noble/main amd64 libxt6t64 amd64 1:1.2.1-1.2build1 [171 kB] Get:4 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB] Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libxpm4 amd64 1:3.5.17-1build2 [36.5 kB] Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB] Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-shape0 amd64 1.15-1ubuntu2 [6100 B] Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft2 amd64 2.3.6-1build1 [45.3 kB] Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbfile1 amd64 1:1.1.0-1build4 [70.0 kB] Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86dga1 amd64 2:1.1.5-1build1 [11.6 kB] Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-utils amd64 7.7+6build2 [189 kB] Fetched 821 kB in 4s (212 kB/s) Selecting previously unselected package libice6:amd64. (Reading database ... 42591 files and directories currently installed.) Preparing to unpack .../00-libice6_2%3a1.0.10-1build3_amd64.deb ... Unpacking libice6:amd64 (2:1.0.10-1build3) ... Selecting previously unselected package libsm6:amd64. Preparing to unpack .../01-libsm6_2%3a1.2.3-1build3_amd64.deb ... Unpacking libsm6:amd64 (2:1.2.3-1build3) ... Selecting previously unselected package libxt6t64:amd64. Preparing to unpack .../02-libxt6t64_1%3a1.2.1-1.2build1_amd64.deb ... Unpacking libxt6t64:amd64 (1:1.2.1-1.2build1) ... Selecting previously unselected package libxmu6:amd64. Preparing to unpack .../03-libxmu6_2%3a1.1.3-3build2_amd64.deb ... Unpacking libxmu6:amd64 (2:1.1.3-3build2) ... Selecting previously unselected package libxpm4:amd64. Preparing to unpack .../04-libxpm4_1%3a3.5.17-1build2_amd64.deb ... Unpacking libxpm4:amd64 (1:3.5.17-1build2) ... Selecting previously unselected package libxaw7:amd64. Preparing to unpack .../05-libxaw7_2%3a1.0.14-1build2_amd64.deb ... Unpacking libxaw7:amd64 (2:1.0.14-1build2) ... Selecting previously unselected package libxcb-shape0:amd64. Preparing to unpack .../06-libxcb-shape0_1.15-1ubuntu2_amd64.deb ... Unpacking libxcb-shape0:amd64 (1.15-1ubuntu2) ... Selecting previously unselected package libxft2:amd64. Preparing to unpack .../07-libxft2_2.3.6-1build1_amd64.deb ... Unpacking libxft2:amd64 (2.3.6-1build1) ... Selecting previously unselected package libxkbfile1:amd64. Preparing to unpack .../08-libxkbfile1_1%3a1.1.0-1build4_amd64.deb ... Unpacking libxkbfile1:amd64 (1:1.1.0-1build4) ... Selecting previously unselected package libxxf86dga1:amd64. Preparing to unpack .../09-libxxf86dga1_2%3a1.1.5-1build1_amd64.deb ... Unpacking libxxf86dga1:amd64 (2:1.1.5-1build1) ... Selecting previously unselected package x11-utils. Preparing to unpack .../10-x11-utils_7.7+6build2_amd64.deb ... Unpacking x11-utils (7.7+6build2) ... Setting up libice6:amd64 (2:1.0.10-1build3) ... Setting up libxft2:amd64 (2.3.6-1build1) ... Setting up libxpm4:amd64 (1:3.5.17-1build2) ... Setting up libxcb-shape0:amd64 (1.15-1ubuntu2) ... Setting up libxxf86dga1:amd64 (2:1.1.5-1build1) ... Setting up libxkbfile1:amd64 (1:1.1.0-1build4) ... Setting up libsm6:amd64 (2:1.2.3-1build3) ... Setting up libxt6t64:amd64 (1:1.2.1-1.2build1) ... Setting up libxmu6:amd64 (2:1.1.3-3build2) ... Setting up libxaw7:amd64 (2:1.0.14-1build2) ... Setting up x11-utils (7.7+6build2) ... Processing triggers for man-db (2.12.0-4build2) ... Processing triggers for libc-bin (2.39-0ubuntu8.6) ... starying@LAPTOP-HT19I0UF:/mnt/c/Users/13636$ /home/starying/app.AppImage thread 'main' (2197) panicked at /usr/local/cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tao-0.34.5/src/platform_impl/linux/event_loop.rs:218:53: Failed to initialize gtk backend!: BoolError { message: "Failed to initialize GTK", filename: "/usr/local/cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gtk-0.18.2/src/rt.rs", function: "gtk::rt::init", line: 141 } note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace starying@LAPTOP-HT19I0UF:/mnt/c/Users/13636$ xeyes Command 'xeyes' not found, but can be installed with: sudo apt install x11-apps
最新发布
11-03
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值