Skip to main content

Ubuntu

Обновление Ubuntu OS                                                                                                                               

Установка необходимых пакетов

sudo apt install mlocate -y
sudo apt install net-tools -y

Создание скрипта

sudo tee ~/update.apt.sh << 'EOF'
#!/bin/bash
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
sudo updatedb
sudo apt-get autoclean
sudo apt-get check
EOF

Запуск скрипта

sudo chmod +x ~/update.apt.sh
sudo ~/update.apt.sh