Osmocom-BB GSM-SMS 스캐너에 대한 문제 해결 방안
2585 단어 솔루션Osmocom-BB
sudo -s
권장합니다. 그렇지 않으면 나중에 좀 번거로울 수 있습니다.오류 A
libosmocore 설치에서 실행./configure 할 때 많은 분들이 만나요.
> No package ‘talloc’ found
이 오류는talloc를 찾을 수 없기 때문에 다음과 같은 해결 방법(이하 코드는 모두
sudo -s
인 경우)# wget https://www.samba.org/ftp/talloc/talloc-2.1.7.tar.gz
# tar -zxvf talloc-2.1.7.tar.gz
# cd talloc-2.1.7/
# ./configure
# make
# make install
이어서 나올 수도 있어요.
No package 'gnutls' found
의 경우
apt-get install libgnutls28-dev
이 문제를 해결하다
오류 B
> /root/osmocom-bb/src/target/firmware/include/asm/swab.h: Assembler messages:
> /root/osmocom-bb/src/target/firmware/include/asm/swab.h:32: Error: no such instruction: `eor %edx,%ecx,%ecx,ror’
> make[4]: *** [gsmtap_util.lo] 1
> make[4]: Leaving directory `/root/osmocom-bb/src/shared/libosmocore/build-target/src’
> make[3]: *** [all] 2
> make[3]: Leaving directory `/root/osmocom-bb/src/shared/libosmocore/build-target/src’
> make[2]: *** [all-recursive] 1
> make[2]: Leaving directory `/root/osmocom-bb/src/shared/libosmocore/build-target’
> make[1]: *** [all] 2
> make[1]: Leaving directory `/root/osmocom-bb/src/shared/libosmocore/build-target’
> make: *** [shared/libosmocore/build-target/src/.libs/libosmocore.a] 2
이 문제의 출현은OsmocomBB 교차 컴파일 환경에 문제가 발생한 것이다. 인터넷상에서 거의 모든 글에 명확한 해결 방안이 없다. 대부분의 글의 답은 다음과 같다. 그러나 이 링크는 이미 기한이 지났기 때문에 우리는 자신이github에 가는 것을 선택했다.https://github.com/koushik2506/exp/tree/master/arm이 가방을 가상 머신 osm 프로젝트의 2단계 디렉터리에 끌어다 놓고 패키지를 해제하세요
# mv ../Desktop/bu-2.16.1_gcc-4.0.2-c-c++_nl-1.14.0_gi-6.4_x86-64.tar.bz2 ./
# tar xf bu-2.16.1_gcc-4.0.2-c-c++_nl-1.14.0_gi-6.4_x86-64.tar.bz2
# mv gnuarm-* ~/gnuarm
# export PATH=~/gnuarm/bin:$PATH
마찬가지로 당신도git 명령을 사용하여 항목을 다운로드한 후 압축을 풀면 다음에 나타날 것이다
make[1]: *** [board/compal_e88/hello_world.compalram.elf] 1
make[1]: Leaving directory `/root/osmocom-bb/src/target/firmware’
make: *** [firmware] 2
해결 방법:
실행
git clean -dfx
make
마지막으로 나는 환경을 다 설치했지만 들어갈 수 없다. 초보적으로 데이터 라인의 문제일 것이다. 시간이 지나면 스스로 한 팀을 구성한다. 만약에 큰 남자가 어떻게 하는지 알면 반드시 나에게 알려줘!(・ω・)ノ
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
브라우저 URL 매개 변수 솔루션getParamValue(매개변수 이름)를 사용하여 값 가져오기 UrlDecode(중국어)를 사용하여 중국어로 복호화 가능...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.