Replies: 3 comments
-
Hey @flzara, Does it also not work after a restart or when you kill all previous processes referencing Theia IDE. I think it will cause issues, when there are "leftover" processes open, because it will try to open a process for the old Theia IDE version. But with a completly new AppImage it should work if no leftover processes are there. Also could you try with preview version 1.60.1? Download Link |
Beta Was this translation helpful? Give feedback.
-
Hi @sgraband Thank you for your help. I tried this morning with a cold start of my laptop and the preview version 1.60.1. Still no luck. $ rm TheiaIDE.AppImage
$ wget https://download.eclipse.org/theia/ide-preview/1.60.1/linux/TheiaIDE.AppImage
--2025-04-08 09:21:53-- https://download.eclipse.org/theia/ide-preview/1.60.1/linux/TheiaIDE.AppImage
Resolving download.eclipse.org (download.eclipse.org)... 198.41.30.199
Connecting to download.eclipse.org (download.eclipse.org)|198.41.30.199|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 391708151 (374M)
Saving to: ‘TheiaIDE.AppImage’
TheiaIDE.AppImage 100%[========================================================>] 373,56M 34,3MB/s in 12s
2025-04-08 09:22:05 (31,5 MB/s) - ‘TheiaIDE.AppImage’ saved [391708151/391708151]
$ sha1sum TheiaIDE.AppImage
aac4362686219b5655f249e5546a3ca7a8af2682 TheiaIDE.AppImage
$ chmod +x TheiaIDE.AppImage
$ ps aux |grep theia
fzara 23560 0.0 0.0 9220 2560 pts/0 S+ 09:23 0:00 grep --color=auto theia
$ ./TheiaIDE.AppImage
[No output, either on the terminal or the GUI] In another terminal, I can see that the process started
I don't know where to go from there |
Beta Was this translation helpful? Give feedback.
-
Hi,
I had an old version of the Theia IDE installed through the AppImage on my Ubuntu 22.04. It proposed me to upgrade and I did so. However, it stalled/crashed during the internal update. So I shut it down, removed the previous AppImage file and downloaded the latest one (1.59), moved it to
~/bin
, made it executable and started it via the terminal$ ./TheiaIDE.AppImage
. I have no output. There is still something running in the background, but no window :$ ps aux |grep theia fzara 240254 0.0 0.2 1186878832 90568 pts/8 Sl+ 11:16 0:00 /tmp/.mount_TheiaIQXIU9K/theia-ide-electron-app.bin --no-sandbox fzara 240268 0.0 0.1 34065252 50688 pts/8 S+ 11:16 0:00 /tmp/.mount_TheiaIQXIU9K/theia-ide-electron-app.bin --type=zygote --no-zygote-sandbox --no-sandbox fzara 240269 0.0 0.1 34065252 50304 pts/8 S+ 11:16 0:00 /tmp/.mount_TheiaIQXIU9K/theia-ide-electron-app.bin --type=zygote --no-sandbox fzara 279147 0.0 0.0 9220 2560 pts/9 S+ 11:53 0:00 grep --color=auto theia
I removed every leftover I could find:
find ~ -type d -iname "*theia*"
orfind ~ -type f -iname "*theia*"
find /usr -iname "*theia*"
grep -ri theia ~/.config ~/.cache ~/.local
Nothing left…and Theia is still not starting.
I created a brand-new user, copied the AppImage to its home/bin folder, made it executable, and… it works when using this brand-new test account!
What am I missing? Is there some leftover of the previous installation? A lock-file somewhere that I missed in my home folder?
Thank you for your help
Beta Was this translation helpful? Give feedback.
All reactions