Nerdegutta's logo

nerdegutta.no

Installing my most used packages

01.09.24

Miscellaneous

This bash script installs the apps and program I use all the time:

#!/bin/bash
echo "****************************************************"
echo "Installing KiCAD"
sudo add-apt-repository ppa:kicad/kicad-8.0-releases
sudo apt update
sudo apt install kicad -y
echo "****************************************************"
echo "Downloading and installing Google Chrome"
wget http://dev.nerdegutta.no/xXx/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
echo "****************************************************"
echo "Installing Gimp"
sudo apt-get install gimp -y
echo "****************************************************"
echo "Installing Code"
wget http://dev.nerdegutta.no/xXx/code_1.92.2.deb
sudo dpkg -i code_1.92.2.deb
#echo "****************************************************"
#echo "Downloading FreeCAD"
# https://github.com/FreeCAD/FreeCAD/releases/download/0.21.2/FreeCAD-0.21.2-Linux-x86_64.AppImage
echo "*****************************************************"
echo "Removing *.deb-files."
rm *deb
echo "*****************************************************"
echo "Installing fuse to run AppImage files
sudo apt install fuse -y
sudo apt install sshfs -y
Run script as SUDO