chromeos Linux 개발 환경에서 종속성 누락

chromeos Linux 개발 환경에서 종속성 누락

크롬북에서 rpi-imager 유틸리티를 작동시키려고 합니다. 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에 대해 인터넷 검색을 시도했지만 아무것도 나타나지 않았습니다.

나는 crouton에 익숙하지만 SD 카드를 이미지화하기 위해 설정하는 것을 피하고 싶습니다.

답변1

libgcc-s1GCC-10.2.1을 설치하여 관련 없는 설치에 대한 누락 문제를 해결할 수 있었습니다 . 이 파일을 얻을 수 없다고 나와 있지만 apt다음에서 두 파일을 모두 다운로드할 수 있었습니다.이 gcc 저장소.

아마도 해당 저장소를 사용하는 방법이 있을 수 있지만 저는 그렇게 하지 않고 다음 두 파일을 수동으로 다운로드하여 설치했습니다.

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

하지만 필요한 다른 패키지는 없는 것 같습니다.

이것이 crouton을 사용하는 것보다 간단한지, 아니면 다른 패키지에 도움이 될지는 확실하지 않지만 아마도 절반 정도는 된 것 같습니다.

관련 정보