Skip to content

Commit fd997bf

Browse files
committed
Fix install instructions for SUSE
Closes #1699
1 parent c8b58a0 commit fd997bf

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md).
1818
### Debian, Ubuntu
1919

2020
```bash
21-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
21+
curl -OL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
2222
sudo dpkg -i code-server_3.3.1_amd64.deb
2323
systemctl --user enable --now code-server
2424
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
2525
```
2626

27-
### Fedora, Red Hat, SUSE
27+
### Fedora, CentOS, Red Hat, SUSE
2828

2929
```bash
30-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-amd64.rpm
31-
sudo yum install -y code-server-3.3.1-amd64.rpm
30+
curl -OL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-amd64.rpm
31+
sudo rpm -i code-server-3.3.1-amd64.rpm
3232
systemctl --user enable --now code-server
3333
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
3434
```
@@ -103,7 +103,7 @@ Add the code-server `bin` directory to your `$PATH` to easily execute `code-serv
103103
Here is an example script for installing and using a static `code-server` release on Linux:
104104

105105
```bash
106-
curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-linux-amd64.tar.gz \
106+
curl -L https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-linux-amd64.tar.gz \
107107
| sudo tar -C /usr/local -xz
108108
sudo mv /usr/local/code-server-3.3.1-linux-amd64 /usr/local/code-server-3.3.1
109109
PATH="/usr/local/code-server-3.3.1/bin:$PATH"

doc/guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ SSH into your instance and run the appropriate commands documented in [README.md
8282
Assuming Debian:
8383

8484
```bash
85-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
85+
curl -OL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
8686
sudo dpkg -i code-server_3.3.1_amd64.deb
8787
systemctl --user enable --now code-server
8888
# Now code-server is running at http://127.0.0.1:8080

doc/npm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sudo apt-get install -y \
1616
libsecret-1-dev
1717
```
1818

19-
## Fedora, Red Hat, SUSE
19+
## Fedora, CentOS, Red Hat
2020

2121
```bash
2222
sudo yum groupinstall -y 'Development Tools'

0 commit comments

Comments
 (0)