Closed OggyP closed 8 months ago
I have managed to resolve this issue myself,
Being unable to find the script .vscode-server/bin/5695cc889d3d0500fa6c7983468a699185fce828/bin/code-server
was causing it to fail. Instead the script in this location was called codium-server
. To fix this issue I changed my product.json for VSCodium from:
"applicationName": "code",
"serverApplicationName": "code-server",
"tunnelApplicationName": "code-tunnel",
to
"applicationName": "codium",
"serverApplicationName": "codium-server",
"tunnelApplicationName": "codium-tunnel",
This resulted in it working, and finding the correct script. Is this an issue with the package.json in VSCodium or is it mean to be code-server?
@OggyP I just updated to 1.87 using the .deb
release and it has the proper values in product.json
so maybe it's a bug in the arch linux packaging in vscodium, you need to report it in the vscodium repo.
Hello, I'm trying to use this extension with vscodium on my pc. On my PC I have installed
vscodium-bin
(version 1.87.0),vscodium-bin-features
andvscodium-bin-marketplace
from the AUR. I am trying to setup an ssh remote connection to my sever running Ubuntu 22.04 but the server component keeps failing to install, reporting the following when the .vscode-server folder is deleted from the server before a fresh install attempt:After this error my .vscode-server folder looks like:
and running
./bin/codium-server --start-server --host=127.0.0.1 --port=0
from that directory results in the server seemingly starting properly.I'm unsure how to proceed, any help would be very much appreciated.