IT/AI

Ubunto 22.04[우분투 22.04] code-server 설치하기

cbwstar 2024. 5. 20. 17:07
728x90
반응형

1. code-server 깃 저장소

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

 

2. 설치(sudo) 권한 또는 root 계정

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

 

3. 설치 확인

/* 설치 확인 명령어 */
dpkg -l | grep code-server

ii  code-server                                4.89.1                                  amd64        Run VS Code in the browser.

 

4. code-server 실행

code-server

 

5. 서버접속 포트 및 비밀번호 설정

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

bind-addr: 0.0.0.0:8060  /* 외부접속 허용및 포트 설정 */
auth: password
password: 비밀번호
cert: false

 

6. 서비스 등록

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

 

7. 서비스 실행확인

sudo systemctl status code-server*

 

8. 시스템 부팅시 자동시작

sudo systemctl enable code-server@<USERNAME>

 

 

웹브라우저를 통해서 편집할수 있는 vscode 편집기가 설치 완료 되었다.

728x90
반응형