Devbox
Overview
To be continued..
FAQ
1. Cursor connection problem but VSCode can connect
Cursor Since the plugin version synchronization with VSCode is slow, outdated versions may cause connection problems.
Solution: Manually install the Devbox plugin.
- Download the vsix file of the Devbox plugin from the VSCode plugin market.
Open the Cursor's extension window.
Drag the downloaded file into the extension window.
2. Cursor and VSCode cannot connect
First, understand the principle of the Devbox plugin: add remote environment information by modifying the ssh config
file, and connect to the remote environment through the Remote-SSH plugin. The plugin first writes the following line of
code in ~/.ssh/config
(some older versions may write other similar content):
Include ~/.ssh/sealos/devbox_config
This line of code imports the contents of the file ~/.ssh/sealos/devbox_config
into the current file. And
devbox_config
contains normal SSH configuration content, for example:
Host usw.sailos.io_ns-rqtny6y6_devbox1234
HostName usw.sailos.io
User devbox
Port 40911
IdentityFile ~/.ssh/sealos/usw.sailos.io_ns-rqtny6y6_devbox1234
IdentitiesOnly yes
StrictHostKeyChecking no
So if there is a problem, it is most likely a plugin bug that causes errors in reading and writing files. You can feedback this to us or try to adjust the SSH file yourself.
3. Always stuck in downloading vscode-server or keep retrying
Cause: Due to some operation (such as restarting Devbox during this process), the download cursor is suspended, and re-downloading causes conflicts.
Solution:
- Enter the web terminal and delete the
.cursor-server
folder.- Click "Terminal" in the operation button on the right side of the Devbox webpage list item.
- Enter the terminal and go to the user directory first,
cd ..
, then usels -a
to view all files and you can see.cursor-server
. - Remove
rm -rf .cursor-server
. - Just retry the connection.
- If there is no content in the newly created Devbox, you can directly delete it and rebuild it.