Firstly, download:
- Debian.iso 12.6.0
(While installing the software, it is recommended to choose: "Debian desktop environment", "SSH server", "standart system untilities"):
https://ncloud.dssl.ru/s/tR4qSXdsskoSp2x - Local repo and important files:
https://ncloud.dssl.ru/s/nt3iybMqN82WYmj - Guardant package:
https://ncloud.dssl.ru/s/jg49bTNRoWijQZB
Installing OS Debian:
- Flash the USB drive with Debian .iso
- Plug it in the the Server, boot from it and start the installation
- During the installation of Debian, you need to install Debian desktop environment, SSH server and standard system untilities.
Example:
Setting up user rights after installing Debian
Enable file editing for the user created during installation:
su root nano /etc/sudoers
In the file, under the root user line, add:
user_name ALL=(ALL) ALL
user_name - the user name specified during system installation.
An example with user "test"Enable ssh on Debian for root:
sudo sed -i '/^#.*PermitRootLogin prohibit-password/s/^#//' /etc/ssh/sshd_config systemctl restart ssh
Example of file content:
If you did not install SSH during system installation, install it manually:
sudo apt update sudo apt install openssh-server