|
2 | 2 | <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
3 | 3 | # Install
|
4 | 4 |
|
5 |
| -- [Upgrading](#upgrading) |
6 |
| -- [install.sh](#installsh) |
7 |
| - - [Flags](#flags) |
8 |
| - - [Detection Reference](#detection-reference) |
9 |
| -- [Debian, Ubuntu](#debian-ubuntu) |
10 |
| -- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse) |
11 |
| -- [Arch Linux](#arch-linux) |
12 |
| -- [yarn, npm](#yarn-npm) |
13 |
| -- [macOS](#macos) |
14 |
| -- [Standalone Releases](#standalone-releases) |
15 |
| -- [Docker](#docker) |
16 |
| -- [helm](#helm) |
| 5 | +- [Install](#install) |
| 6 | + - [Upgrading](#upgrading) |
| 7 | + - [install.sh](#installsh) |
| 8 | + - [Flags](#flags) |
| 9 | + - [Detection Reference](#detection-reference) |
| 10 | + - [Debian, Ubuntu](#debian-ubuntu) |
| 11 | + - [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse) |
| 12 | + - [Arch Linux](#arch-linux) |
| 13 | + - [yarn, npm](#yarn-npm) |
| 14 | + - [macOS](#macos) |
| 15 | + - [Standalone Releases](#standalone-releases) |
| 16 | + - [Docker](#docker) |
| 17 | + - [helm](#helm) |
17 | 18 |
|
18 | 19 | <!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
19 | 20 |
|
@@ -87,17 +88,17 @@ commands presented in the rest of this document.
|
87 | 88 | ## Debian, Ubuntu
|
88 | 89 |
|
89 | 90 | ```bash
|
90 |
| -curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.0/code-server_3.8.0_amd64.deb |
91 |
| -sudo dpkg -i code-server_3.8.0_amd64.deb |
| 91 | +curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server_3.8.1_amd64.deb |
| 92 | +sudo dpkg -i code-server_3.8.1_amd64.deb |
92 | 93 | sudo systemctl enable --now code-server@$USER
|
93 | 94 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
94 | 95 | ```
|
95 | 96 |
|
96 | 97 | ## Fedora, CentOS, RHEL, SUSE
|
97 | 98 |
|
98 | 99 | ```bash
|
99 |
| -curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.0/code-server-3.8.0-amd64.rpm |
100 |
| -sudo rpm -i code-server-3.8.0-amd64.rpm |
| 100 | +curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-amd64.rpm |
| 101 | +sudo rpm -i code-server-3.8.1-amd64.rpm |
101 | 102 | sudo systemctl enable --now code-server@$USER
|
102 | 103 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
103 | 104 | ```
|
@@ -166,10 +167,10 @@ Here is an example script for installing and using a standalone `code-server` re
|
166 | 167 |
|
167 | 168 | ```bash
|
168 | 169 | mkdir -p ~/.local/lib ~/.local/bin
|
169 |
| -curl -fL https://github.com/cdr/code-server/releases/download/v3.8.0/code-server-3.8.0-linux-amd64.tar.gz \ |
| 170 | +curl -fL https://github.com/cdr/code-server/releases/download/v3.8.1/code-server-3.8.1-linux-amd64.tar.gz \ |
170 | 171 | | tar -C ~/.local/lib -xz
|
171 |
| -mv ~/.local/lib/code-server-3.8.0-linux-amd64 ~/.local/lib/code-server-3.8.0 |
172 |
| -ln -s ~/.local/lib/code-server-3.8.0/bin/code-server ~/.local/bin/code-server |
| 172 | +mv ~/.local/lib/code-server-3.8.1-linux-amd64 ~/.local/lib/code-server-3.8.1 |
| 173 | +ln -s ~/.local/lib/code-server-3.8.1/bin/code-server ~/.local/bin/code-server |
173 | 174 | PATH="~/.local/bin:$PATH"
|
174 | 175 | code-server
|
175 | 176 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
|
|
0 commit comments