Firstly, download:
- Debian.iso 12.8.0
(While installing the software, it is recommended to choose: "Debian desktop environment", "SSH server", "standart system untilities"):
https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.8.0-amd64-DVD-1.iso
alternate link: https://ncloud.dssl.ru/s/yB9otbNteqmtMNp - Local repo and important files:
https://ncloud.dssl.ru/s/a8DwDWaaNmQQYMa - 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