@@ -77,17 +77,17 @@ commands presented in the rest of this document.
77
77
## Debian, Ubuntu
78
78
79
79
``` bash
80
- curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.0 /code-server_3.4.0_amd64 .deb
81
- sudo dpkg -i code-server_3.4.0_amd64 .deb
80
+ curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.1 /code-server_3.4.1_amd64 .deb
81
+ sudo dpkg -i code-server_3.4.1_amd64 .deb
82
82
systemctl --user enable --now code-server
83
83
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
84
84
```
85
85
86
86
## Fedora, CentOS, RHEL, SUSE
87
87
88
88
``` bash
89
- curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.0 /code-server-3.4.0 -amd64.rpm
90
- sudo rpm -i code-server-3.4.0 -amd64.rpm
89
+ curl -fOL https://github.com/cdr/code-server/releases/download/v3.4.1 /code-server-3.4.1 -amd64.rpm
90
+ sudo rpm -i code-server-3.4.1 -amd64.rpm
91
91
systemctl --user enable --now code-server
92
92
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
93
93
```
@@ -115,7 +115,7 @@ systemctl --user enable --now code-server
115
115
We recommend installing with ` yarn ` or ` npm ` when:
116
116
117
117
1 . You aren't on ` amd64 ` or ` arm64 ` .
118
- 2 . If you're on Linux with glibc < v2.17
118
+ 2 . If you're on Linux with glibc < v2.17 or glibcxx < v3.4.18
119
119
120
120
** note:** Installing via ` yarn ` or ` npm ` builds native modules on install and so requires C dependencies.
121
121
See [ ./npm.md] ( ./npm.md ) for installing these dependencies.
@@ -143,7 +143,7 @@ We publish self contained `.tar.gz` archives for every release on [github](https
143
143
They bundle the node binary and ` node_modules ` .
144
144
145
145
These are created from the [ npm package] ( #yarn-npm ) and the rest of the releases are created from these.
146
- Only requirement is glibc >= 2.17 on Linux and for macOS there is no minimum system requirement.
146
+ Only requirement is glibc >= 2.17 && glibcxx >= v3.4.18 on Linux and for macOS there is no minimum system requirement.
147
147
148
148
1 . Download the latest release archive for your system from [ github] ( https://github.com/cdr/code-server/releases ) .
149
149
2 . Unpack the release.
@@ -156,10 +156,10 @@ Here is an example script for installing and using a standalone `code-server` re
156
156
157
157
``` bash
158
158
mkdir -p ~ /.local/lib ~ /.local/bin
159
- curl -fL https://github.com/cdr/code-server/releases/download/v3.4.0 /code-server-3.4.0 -linux-amd64.tar.gz \
159
+ curl -fL https://github.com/cdr/code-server/releases/download/v3.4.1 /code-server-3.4.1 -linux-amd64.tar.gz \
160
160
| tar -C ~ /.local/lib -xz
161
- mv ~ /.local/lib/code-server-3.4.0 -linux-amd64 ~ /.local/lib/code-server-3.4.0
162
- ln -s ~ /.local/lib/code-server-3.4.0 /bin/code-server ~ /.local/bin/code-server
161
+ mv ~ /.local/lib/code-server-3.4.1 -linux-amd64 ~ /.local/lib/code-server-3.4.1
162
+ ln -s ~ /.local/lib/code-server-3.4.1 /bin/code-server ~ /.local/bin/code-server
163
163
PATH=" ~/.local/bin:$PATH "
164
164
code-server
165
165
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
0 commit comments