공부/이모저모
Ubuntu에 ida free 설치하는 방법 (설치후 qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found 문제해결)
JUNFUTURE
2024. 3. 11. 01:04
아래 주소에서 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
환경변수 설정
환경 변수 설정을 통해 터미널에서 어느 디렉터리 경로에 있든 ida를 실행할 수 있다.
.bashrc 등 쉘 설정파일을 들어가서 수정을 해주면 된다.
아래의 사진에서 .bashrc(bash shell 설정파일) .zshrc(zsh shell 설정파일) 처럼
본인 컴퓨터에 설치한 쉘 설정파일들을 확인할 수 있다.
vim ~/.zshrc
export PATH=$PATH:[ida설치경로]
추가 후 저장
source ~/.bashrc
이제 아래 명령어들로 ida를 실행할 수 있다.
ida
ida64