forked from Conan_Doyl/Wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
630 B
25 lines
630 B
--- |
|
id: debian-nano-installieren |
|
title: Nano installieren |
|
sidebar_label: Nano installieren |
|
--- |
|
Installation von Nano mit Debian 10 oder CentOS |
|
|
|
## Informationen |
|
In diesem Tutorial wird dir gezeigt, wie du Nano auf einem VPS oder Dedicated Server installierst. Du benötigst dafür Debian 10 und Root Rechte. |
|
Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY oder Terminus. |
|
|
|
Bitte stelle vor der Installation sicher, das du [Sudo](debian-sudo-installieren) installiert hast. |
|
|
|
### Installationen |
|
Debian |
|
|
|
```sh |
|
sudo apt-get install nano |
|
``` |
|
CentOS |
|
|
|
```sh |
|
sudo yum install nano |
|
``` |
|
|
|
|