공부/이모저모

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

 

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