본문 바로가기
OS/Linux

code-server / 설치 및 설정

by 하하IT 2024. 3. 2.

## 설치
curl -fsSL https://code-server.dev/install.sh | sh
## 초기화
sudo systemctl enable --now code-server@$USER
## 패스워드 disable
sed -i.bak 's/auth: password/auth: none/' ~/.config/code-server/config.yaml
## port 변경(8080 --> 12734 )
sed -i.bak 's/bind-addr: 127.0.0.1:8080/bind-addr: 0.0.0.0:12734/' ~/.config/code-server/config.yaml

##설정파일위치
cat ~/.config/code-server/config.yaml

user@PC:~$ cat ~/.config/code-server/config.yaml
bind-addr: 0.0.0.0:12734
auth: none
password: PASSWORD
cert: false
user@PC:~$