33 lines
641 B
Markdown
33 lines
641 B
Markdown
# code_server
|
|
|
|
If Win11 is used as main terminal/client then pleas configure following:
|
|
* Windows Terminal (Preview)
|
|
* Font: CodeNewRoman Nerd Font
|
|
|
|
## Set up VM containing SSH code server
|
|
Configure new VM with following resources:
|
|
* 2GB RAM
|
|
* 16GB vDisk
|
|
* Ubuntu server 22.04 boot iso
|
|
|
|
### Install VM (in hypervisor)
|
|
* Minimal installation
|
|
* Install openssh server
|
|
|
|
## Install (in SSH)
|
|
* Log in via SSH
|
|
* Install git
|
|
```
|
|
sudo apt update && sudo apt -y install git
|
|
```
|
|
* Clone this repo
|
|
```
|
|
cd ~ && git clone https://git.cmtec.se/cm/code_server.git
|
|
```
|
|
* Run setup script
|
|
```
|
|
cd code_server && ./setup.sh
|
|
```
|
|
* exit session
|
|
* Log in via SSH
|