-
When I'm running a cpu-heavy job and closing the browser (which leads to disconnection log from code-server), I wonder if there are some other ways to run the terminal as an independent process using a code server client. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I don't think so because it's part of VS Code 🤔 @code-asher can confirm though |
Beta Was this translation helpful? Give feedback.
-
Just launched screen process along with the code-server process ( |
Beta Was this translation helpful? Give feedback.
Just launched screen process along with the code-server process (
screen -dmS permanent /bin/bash && code-server --bind-addr --some-option
), and accessing screen process from code-server (screen -r permanent
) provides permanent process terminal.