ubuntu-scripts/install-pkg.sh

68 lines
1.7 KiB
Bash
Executable File

#!/bin/sh
apt-get -y update
apt-get -y upgrade
apt-get -y autoremove
# 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 powertop
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