chromeos linux开发环境缺少依赖

chromeos linux开发环境缺少依赖

我正在尝试让 rpi-imager 实用程序在 chromebook 上运行。我启用了linux开发环境,从raspi网站下载了.deb包文件,并尝试使用apt安装:

~$ sudo apt install ./imager_1.6.2_amd64.deb 
Note, selecting 'rpi-imager' instead of './imager_1.6.2_amd64.deb'
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:
 rpi-imager : Depends: libgcc-s1 (>= 3.0) but it is not installable
              Depends: libqt5core5a (>= 5.12.2) but 5.11.3+dfsg1-1+deb10u4 is to be installed
              Recommends: udisks2 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

有没有一种简单的方法可以让我将 libgcc 或 libqt 放入我的 chrome LDE 中来解决这些依赖关系?我尝试在谷歌上搜索要添加的 chromeos PPA,但没有找到任何结果。

我熟悉油煎面包块,但我想避免仅仅为了成像 SD 卡而设置它。

答案1

我能够libgcc-s1通过安装 GCC-10.2.1 解决不相关安装的缺失问题。虽然apt说它无法获取这些文件,但我可以从这个 gcc 存储库

可能有一种方法可以轻松使用该存储库,但我没有这样做,我手动下载并安装了这两个文件:

  • gcc-10-base_10.2.1-6+rpi1_armhf.deb
  • libgcc-s1_10.2.1-6+rpi1_armhf.deb

但您需要的其他包似乎不存在。

不确定这是否比使用油煎面包块更简单,或者它是否对其他包有帮助,但也许它对你来说已经完成了一半。

相关内容