아래 주소에서 IDA Free for Linux 설치
idafree84_linux.run 다운 받은 뒤에
chmod +x idafree84_linux.run
./idafree84_linux.run
xcb 오류해결
sudo apt-get update
sudo apt-get install -y qt5-default libxcb-xinerama0-dev
qt5-default가 설치가 안되면 아래로 해결
sudo apt-get install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools
https://csm-kr.tistory.com/114
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in error 해결하기 (in ubuntu docker)
docker ubuntu 환경에서 cv2.imshow 하려는데 다음과 같은 오류가 나왔다. qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/opt/conda/lib/python3.10/site-packages/cv2/qt/plugins" even though it was found. This application faile
csm-kr.tistory.com
환경변수 설정
환경 변수 설정을 통해 터미널에서 어느 디렉터리 경로에 있든 ida를 실행할 수 있다.
.bashrc 등 쉘 설정파일을 들어가서 수정을 해주면 된다.
아래의 사진에서 .bashrc(bash shell 설정파일) .zshrc(zsh shell 설정파일) 처럼
본인 컴퓨터에 설치한 쉘 설정파일들을 확인할 수 있다.
vim ~/.zshrc
export PATH=$PATH:[ida설치경로]
추가 후 저장
source ~/.bashrc
이제 아래 명령어들로 ida를 실행할 수 있다.
ida
ida64
'공부 > 이모저모' 카테고리의 다른 글
Ubuntu에서 sys/syscall.h: No such file or directory 해결 (0) | 2024.03.13 |
---|---|
위성 서비스를 사용하는 user segment에서 space segment로 데이터를 전송하는 경로 (0) | 2024.03.11 |
인공위성 펌웨어 해킹을 위한 인공위성관련 용어정리 (0) | 2024.03.11 |
C++ 클래스 안의 멤버함수 const 키워드 (0) | 2024.02.13 |
v3demo.mediasoup.org Could not join the room: NotAllowedError: Permission denied 해결 (0) | 2024.02.07 |