#!/bin/sh # Installation script for ARMBIAN Dev - part 1 - as root # Provide ssh password ## Option 1: uncomment the following line to display entered password #sudo read -sp "Enter ssh password : " PASSWORD_SSH ## Option 2: hide the entered password clear echo "----------------------------------------------------------------------------------" echo "- Welcome to Dev_DEBIAN installation -" echo "----------------------------------------------------------------------------------" read -p "Please enter name for new DSP system then press Enter: " DSP_NAME echo "$DSP_NAME is installing, please wait" CURRENT_HOST_NAME=$(hostname) truncate -s 0 /etc/hostname echo "$DSP_NAME" >> /etc/hostname sed -i "s%$CURRENT_HOST_NAME%$DSP_NAME%g" /etc/hosts # apt install tmux -y # tmux new -s base apt update apt upgrade -y apt install pkg-config libasound2-dev openssl libssl-dev libjack-dev build-essential git -y #!/bin/sh # Installation script for ARMBIAN Dev - part 2 - as mgt clear echo "----------------------------------------------------------------------------------" echo "- Welcome to Dev_DEBIAN installation -" echo "----------------------------------------------------------------------------------" tmux new -s camilladsp curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh git clone https://github.com/HEnquist/camilladsp.git camilladsp_build exit