Firstly, download:

  1. 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
  2. Local repo and important files:
    https://ncloud.dssl.ru/s/nt3iybMqN82WYmj
  3. Guardant package:
    https://ncloud.dssl.ru/s/jg49bTNRoWijQZB

Installing OS Debian:

  1. Flash the USB drive with Debian .iso
  2. Plug it in the the Server, boot from it and start the installation
  3. During the installation of Debian, you need to install Debian desktop environment, SSH server and standard system untilities.
    Example:
    image-2024-8-29_11-26-59-1.png

Setting up user rights after installing Debian

  1. Enable file editing for the user created during installation:

    su root
    nano /etc/sudoers
  2. 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"
    image-2024-8-29_11-27-23-1.png

  3. Enable ssh on Debian for root:

    sudo sed -i '/^#.*PermitRootLogin prohibit-password/s/^#//' /etc/ssh/sshd_config
    systemctl restart ssh

    Example of file content:
    image-2024-11-1_17-24-30.png

If you did not install SSH during system installation, install it manually:

sudo apt update
sudo apt install openssh-server
  • Нет меток