## 설치
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:~$
'OS > Linux' 카테고리의 다른 글
linux / ps / 프로세스 확인 (0) | 2024.02.21 |
---|---|
Rocky Linux / 초기설정 (0) | 2024.02.16 |
linux version / 리눅스 버전 확인 / os-release / hostnamectl / uname (0) | 2023.09.23 |
linux welcome message / motd / issue / sshd_config / Banner (0) | 2023.09.22 |
네트워크 정상 통신체크 / linux / telnet / nc / curl / dev/tcp (0) | 2023.09.21 |