Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

main

[Ubuntu 22.04] code-server 설치하기 본문

ETC

[Ubuntu 22.04] code-server 설치하기

1984 2023. 5. 12. 14:48

code-server git repository

https://github.com/coder/code-server

 

GitHub - coder/code-server: VS Code in the browser

VS Code in the browser. Contribute to coder/code-server development by creating an account on GitHub.

github.com

 

설치 및 실행

1. 설치 스크립트를 사용한다. (sudo 권한이 있는 계정에서 진행해야 한다.)

curl -fsSL https://code-server.dev/install.sh | sh

* 사전에 아래 명령어로 권한을 확인한 후, 설치를 진행하면 좋다.

curl -fsSL https://code-server.dev/install.sh | sh -s -- --dry-run

2. 설치 완료

3. code-server 실행

code-server

 

config.yaml 수정

* ~/.config/code-server  디렉토리가 없는 경우 : code-server 를 최초 1번 실행하여야 합니다.

 

1. code-server 서비스를 중지한다.

 

2. .config.yaml

vi ~/.config/code-server/config.yaml

3. bind-addr을 0.0.0.0 으로 바꾸고, port 번호는 필요하다면 바꿔준다.(기본 포트는 8080)

 

서비스 등록

1. 아래 명령어를 입력하여 code-server를 시스템 부팅 시 자동으로 시작하도록 설정하고, code-server를 실행한다.

sudo systemctl enable --now code-server@<USERNAME>

* 서비스 실행 확인

sudo systemctl list-units code-server*

* 서비스 중지

sudo systemctl stop code-server@<USERNAME>.service

* 비활성화 (시스템 부팅 시 자동으로 시작 X)

sudo systemctl disable code-server@<USERNAME>

 

끝.

 

[참고 자료]

https://ddochea.tistory.com/172

https://jzi040941.tistory.com/22

https://hakawati.co.kr/445

728x90
Comments