Eclipse와 IntelliJ 관련
[Ubuntu] STS 4.22.0 설치
헤르메스의날개
2024. 4. 25. 16:50
728x90
Ubuntu 에 STS 를 설치해 봅니다.
1. 다운로드
2. 압축 풀기
# zsh
$ tar -zxvf spring-tool-suite-4-4.22.0.RELEASE-e4.31.0-linux.gtk.x86_64.tar.gz
오류 #1
Linux ARM_64 버전은 아래와 같은 오류가 발생하며, 실행되지 않습니다.
Exec format error
# Exec format error
$ ./SpringToolSuite4
zsh: exec 형식 오류: ./SpringToolSuite4
오류 #2
Ubuntu Linux에서 Marketplace 를 띄우면 아래와 같은 오류 메시지를 출력합니다.
To suppress this warning, set the VM property: -Declipse.e4.inject.javax.warning=false
To disable processing of 'javax' annotations entirely, set the VM property: -Declipse.e4.inject.javax.disabled=true
SpringToolSuite4.ini 또는 Eclise.ini 파일에 아래 코드를 추가합니다.
-Declipse.e4.inject.javax.disabled=true
오류 #3
(SpringToolSuite4:23325): Gdk-CRITICAL **: 22:49:18.264: gdk_window_create_gl_context: assertion 'GDK_IS_WINDOW (window)' failed
그래픽 드라이버를 업데이트 해야 해결 된다고 합니다.
https://hermeslog.tistory.com/754
728x90