|
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) |
17 | | -- [App Engines (Azure, Heroku)](#app-engines-azure-heroku) |
| 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) |
| 18 | + - [App Engines (Azure, Heroku)](#app-engines-azure-heroku) |
18 | 19 |
|
19 | 20 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> |
20 | 21 |
|
@@ -88,17 +89,17 @@ commands presented in the rest of this document. |
88 | 89 | ## Debian, Ubuntu |
89 | 90 |
|
90 | 91 | ```bash |
91 | | -curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server_3.9.0_amd64.deb |
92 | | -sudo dpkg -i code-server_3.9.0_amd64.deb |
| 92 | +curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server_3.9.1_amd64.deb |
| 93 | +sudo dpkg -i code-server_3.9.1_amd64.deb |
93 | 94 | sudo systemctl enable --now code-server@$USER |
94 | 95 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml |
95 | 96 | ``` |
96 | 97 |
|
97 | 98 | ## Fedora, CentOS, RHEL, SUSE |
98 | 99 |
|
99 | 100 | ```bash |
100 | | -curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-amd64.rpm |
101 | | -sudo rpm -i code-server-3.9.0-amd64.rpm |
| 101 | +curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server-3.9.1-amd64.rpm |
| 102 | +sudo rpm -i code-server-3.9.1-amd64.rpm |
102 | 103 | sudo systemctl enable --now code-server@$USER |
103 | 104 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml |
104 | 105 | ``` |
@@ -168,10 +169,10 @@ Here is an example script for installing and using a standalone `code-server` re |
168 | 169 |
|
169 | 170 | ```bash |
170 | 171 | mkdir -p ~/.local/lib ~/.local/bin |
171 | | -curl -fL https://github.com/cdr/code-server/releases/download/v3.9.0/code-server-3.9.0-linux-amd64.tar.gz \ |
| 172 | +curl -fL https://github.com/cdr/code-server/releases/download/v3.9.1/code-server-3.9.1-linux-amd64.tar.gz \ |
172 | 173 | | tar -C ~/.local/lib -xz |
173 | | -mv ~/.local/lib/code-server-3.9.0-linux-amd64 ~/.local/lib/code-server-3.9.0 |
174 | | -ln -s ~/.local/lib/code-server-3.9.0/bin/code-server ~/.local/bin/code-server |
| 174 | +mv ~/.local/lib/code-server-3.9.1-linux-amd64 ~/.local/lib/code-server-3.9.1 |
| 175 | +ln -s ~/.local/lib/code-server-3.9.1/bin/code-server ~/.local/bin/code-server |
175 | 176 | PATH="~/.local/bin:$PATH" |
176 | 177 | code-server |
177 | 178 | # Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml |
|
0 commit comments