Osmocom-BB GSM-SMS 스캐너에 대한 문제 해결 방안

2585 단어 솔루션Osmocom-BB
Osmocom-BB GSM-SMS 탐지기에 대한 문제 해결 방안 설치 강좌는freebuf에 있는 이것을 직접 참고하여 이 프로젝트를 설치하기 전에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

마지막으로 나는 환경을 다 설치했지만 들어갈 수 없다. 초보적으로 데이터 라인의 문제일 것이다. 시간이 지나면 스스로 한 팀을 구성한다. 만약에 큰 남자가 어떻게 하는지 알면 반드시 나에게 알려줘!(・ω・)ノ

좋은 웹페이지 즐겨찾기