Все и сразу

This commit is contained in:
parent 540f10e267
commit 300cd0c524
1 changed files with 12 additions and 2 deletions

View File

@ -99,14 +99,24 @@ def main():
#обновим списки пакетов #обновим списки пакетов
execute_command('apt update') execute_command('apt update')
execute_command('apt-get -t buster install libc6')
#Установим свежие драйвера под интеловские чипы #Установим свежие драйвера под интеловские чипы
execute_command('apt-get install -y intell-microcode') execute_command('apt-get install -y intell-microcode')
#теперь установим snap #теперь установим snap
execute_command('apt install snapd') execute_command('apt install snapd')
execute_command('sudo ln -s /var/lib/snapd/snap /snap') execute_command('sudo ln -s /var/lib/snapd/snap /snap')
execute_command('systemctl enable --now snapd')
#обновим core у обвязки snap
execute_command('snap refresh core')
execute_command('snap install core')
execute_command('snap install core snapd')
#execute_command('')
#execute_command('')
#следом установим snap-store #следом установим snap-store
execute_command('snap install snap-store') execute_command('snap install snap-store')