Last active
February 25, 2017 13:54
-
-
Save DreamerKlim/d4209b4d07fe6a6b5770c6b019b838b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Меняем пароль для пользователя root, вводим 2 раза один и тот же пароль | |
| sudo passwd root | |
| # Получаем права, вводим пароль, который прописали выше | |
| su | |
| # Обновление | |
| apt-get update && apt-get -y upgrade | |
| # Установка unzip | |
| apt-get install -y unzip | |
| # Переходим в директорию | |
| cd /tmp | |
| # Загрузка скрипта | |
| wget --no-check-certificate -O installer.tgz "https://github.com/servisys/ispconfig_setup/tarball/master" | |
| # Распаковка | |
| tar zxvf installer.tgz | |
| # Директория | |
| cd *ispconfig* | |
| bash install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment