Skip to content

Commit 36cfca9

Browse files
Update README.md
++ added fedora and opensuse based install command
1 parent 6047357 commit 36cfca9

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,21 @@
33

44
## Install SSH server
55

6+
### Debian based
67
```bash
7-
sudo apt-get install openssh-server \
8-
&& sudo systemctl enable ssh --now
8+
sudo apt-get install -y openssh-server && sudo systemctl enable ssh --now
99
```
10+
### Fedora based
11+
```bash
12+
sudo dnf install -y openssh-server && sudo systemctl enable sshd --now
13+
```
14+
### OpenSUSE based
15+
16+
```bash
17+
sudo zypper install --no-confirm openssh && sudo systemctl enable sshd --now
18+
```
19+
20+
1021
### Verify that ssh service running
1122
```bash
1223
sudo systemctl status ssh

0 commit comments

Comments
 (0)