From 1bfe500633b19209acf68153233a1d1ed4221a3a Mon Sep 17 00:00:00 2001 From: farkadi Date: Wed, 28 Aug 2024 22:18:39 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/README.md b/README.md index c984623..9b00cff 100644 --- a/README.md +++ b/README.md @@ -1 +1,41 @@ ![BSPWM](images/screenshots/2.png) + +# Установка на Alt Starterkit P11 ICEWM + +\# Включаем группе wheel доступ к SUDO + +``` +su - +control sudowheel enabled +``` + +**#Обновляем систему после установки** + +``` +sudo apt-get update +sudo apt-get dist-upgrade +sudo apt-get install update-kernel +sudo update-kernel +``` + +**#Ставим сервер SSH и запускаем службу** + +``` +apt-get install openssh-server +systemctl enable --now sshd +``` + +#Ставим SUDO + +```bash +apt-get install sudo +``` + +#Создаем пользователя, добавляем в группу wheel и включаем права + +``` +useradd user +usermod -a -G wheel user +passwd user +control sudowheel enabled +``` \ No newline at end of file