diff options
author | Mateja <mail@matejamaric.com> | 2020-12-03 22:17:18 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-12-03 22:17:18 +0100 |
commit | 13cf5c0b28bab6a54d1cb533ca221e60745e6864 (patch) | |
tree | f36ca895deddd11fe56bcae9661afbc8308db2c3 | |
parent | 36ea756bc0d073b4e92fc480ca563b0a2c234081 (diff) | |
download | setup-scripts-13cf5c0b28bab6a54d1cb533ca221e60745e6864.tar.gz setup-scripts-13cf5c0b28bab6a54d1cb533ca221e60745e6864.zip |
Add tmux and some notes.
-rwxr-xr-x | setup.sh | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,5 @@ #!/bin/bash +# I need to add option to install nvidia drivers sudo apt update @@ -74,8 +75,9 @@ fi echo "Installing work software..." sudo apt install -y nginx php-fpm mariadb-server -sudo apt install php_mysql phpunit php-intl php-curl php-zip php-mbstring php-gd php-soap php-xml php-xmlrpc +sudo apt install -y php_mysql phpunit php-intl php-curl php-zip php-mbstring php-gd php-soap php-xml php-xmlrpc sudo systemctl restart php7.3-fpm.service +sudo apt install -y tmux wget -O /tmp/composer-setup.php https://getcomposer.org/installer sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer @@ -83,6 +85,11 @@ sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=compose sudo apt -t buster-backports install -y nodejs npm +# Installing LaTeX +# sudo apt install -y texlive texlive-latex-base texlive-latex-extra +# sudo apt install -y texlive-extra-utils texlive-fonts-extra +# sudo apt install -y texlive-lang-english texlive-lang-cyrillic + read -p "Do you want to install termite? " -n 1 -r echo |