From 3ba166bc9c7d614d5aa231235a82104ba54d4b72 Mon Sep 17 00:00:00 2001 From: "Scott C. MacCallum" Date: Tue, 27 Dec 2022 18:09:21 -0500 Subject: [PATCH] Adding file --- install-pkg.sh | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100755 install-pkg.sh diff --git a/install-pkg.sh b/install-pkg.sh new file mode 100755 index 0000000..95529f3 --- /dev/null +++ b/install-pkg.sh @@ -0,0 +1,66 @@ +#!/bin/sh + +apt-get -y update +apt-get -y upgrade + +# Install the following packages + +echo "Did you download Android Studio by hand? " +read answer + +tar -v -z -x -f android-studio-2021.3.17-linux.tar.gz + +cd ~/Downloads + +wget https://github.com/codelerity/netbeans-installers/releases/download/v16-build1/apache-netbeans_16-1_amd64.deb +dpkg -i apache-netbeans_16-1_amd64.deb + +wget https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64 +dpkg -i code_1.74.2-1671533413_amd64.deb + +apt-get install -y alpine +apt-get install -y arduino +apt-get install -y audacity +apt-get install -y automake +apt-get install -y blender +apt-get install -y blueman +apt-get install -y brickos +apt-get install -y cc65 +apt-get install -y chromium-browser +apt-get install -y clang-13 +apt-get install -y clisp +apt-get install -y cmake +apt-get install -y dos2unix +apt-get install -y emacs-nox +apt-get install -y filezilla +apt-get install -y freecad +apt-get install -y gcc-12 +apt-get install -y gimp +apt-get install -y git +apt-get install -y golang-1.18 +apt-get install -y gopher +apt-get install -y gprolog +apt-get install -y guile-3.0 +apt-get install -y html2text +apt-get install -y jdk +apt-get install -y libreoffice +apt-get install -y mosh +apt-get install -y mpg123 +apt-get install -y nano +apt-get install -y nasm +apt-get install -y nmap +apt-get install -y openconnect +apt-get install -y openjdk-19-jdk +apt-get install -y python +apt-get install -y python3.11-full +apt-get install -y rsync +apt-get install -y ruby +apt-get install -y rust-all +apt-get install -y thunderbird +apt-get install -y vice +apt-get install -y vlc +apt-get install -y w3m +apt-get install -y wget +apt-get install -y wireshark + +exit 0