Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 오늘도 우라라
- install opencv-4.4.0 on ubuntu 22.04
- 오늘도 우라라 펫
- 기초
- 그랑사가
- ubuntu
- 오늘도 우라라 공략
- MSG
- 마리아 DB
- C언어
- 프로그래밍
- 토픽
- mysql
- JungOl
- while
- Linux
- C++
- ros
- 오늘도 우라라 펫 공략
- publish
- Subscribe
- 우분투
- 데이터 베이스
- 리눅스
- LeetCode
- 반복문
- 환경설정
- topic
- mariaDB
- 등차수열
Archives
- Today
- Total
하루의 쉼터
[ERROR] Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1' (Feat. No package 'xfont2' found) 본문
프로그래밍/Yocto
[ERROR] Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1' (Feat. No package 'xfont2' found)
Changun An 2021. 10. 29. 14:54반응형
| No package 'xfont2' found
| ERROR: Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1'
OutLine
xserver 설치 오류
| No package 'xfont2' found
|
| Consider adjusting the PKG_CONFIG_PATH environment variable if you
| installed software in a non-standard prefix.
|
| Alternatively, you may set the environment variables XSERVERCFLAGS_CFLAGS
| and XSERVERCFLAGS_LIBS to avoid the need to call pkg-config.
| See the pkg-config man page for more details.
| WARNING: exit code 1 from a shell command.
|
ERROR: Task (/home/yocto/var-fsl-yocto/sources/poky/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.5.bb:do_configure) failed with exit code '1'
1. apt-get을 통한 install 해결 방법
1.1 search - ubuntu apt 패키지 내 존재 확인
sudo apt-cache search xfont2
1.2 apt-get install를 통하여 가져오기
sudo apt-get install xfont2*
1.3 재 bitbake ( 실패 )
2. OnpenEmbedded Layer - Recipes를 이용
2.1 검색
https://layers.openembedded.org/layerindex/branch/master/layers/
2.2 욕토 버전 맞추기
2.3 bitbake xfont2
bitbake libxfont2
2.4 재bitbake ( 실패 )
3. 재설치 및 Core 수 증가 ( 해결 )
기존 코어 1 -> 3으로 올림.
패키지를 설치하며 의존성 패키지 문제가 발생 되었는지 오류 발생 했던 것들이 해결 되었음...
다른 작업에 영향에 영향이 올까봐 기존 코어를 1로 해둔게 문제였던 것으로 추정.
반응형
Comments