Files
clover/image_builder/scripts/software_install.sh
2018-06-09 03:41:41 +03:00

34 lines
773 B
Bash
Executable File

#!/bin/bash
set -e
##################################################################################################################################
# Image software installation
##################################################################################################################################
echo -e "\033[0;31m\033[1m$(date) | #1 Network installing\033[0m\033[0m"
# TODO: Use dnsmasq instead of isc-dhcp-server
apt-get install --no-install-recommends -y \
unzip \
zip \
ipython \
screen \
byobu \
nmap \
lsof \
python-pip \
git \
dnsmasq \
tmux \
vim \
ipython3 \
python3-pip
# vim settings
echo "set mouse-=a
syntax on
" > /home/pi/.vimrc
echo -e "\033[0;31m\033[1m$(date) | End of network installation\033[0m\033[0m"