diff --git a/Referenzsystem erstellen.odt b/Referenzsystem erstellen.odt new file mode 100644 index 0000000..689d896 Binary files /dev/null and b/Referenzsystem erstellen.odt differ diff --git a/autoinstall.sh b/autoinstall.sh new file mode 100644 index 0000000..73ac512 --- /dev/null +++ b/autoinstall.sh @@ -0,0 +1,25 @@ +#! /bin/bash + +sudo apt update -y +# install all programms from the install.list +cat install.list | xargs sudo apt-get -y install +# uninstal all programms from the list +cat uninstall.list | xargs sudo apt -y purge +# download additional packages +cat download.list | xargs sudo wget +# install the packages +sudo apt install -y ./*.deb +# set up flatpack +flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo +# install languages by ISO 639-1 short +for l in en uk ru ar; do + sudo apt -y install $(check-language-support -l $l) +done +# import panel settings from file +xfce4-panel-profiles load default_panel.tar.bz2 +# clean the system +sudo apt update -y +sudo apt full-upgrade -y +sudo apt autoremove -y +sudo apt clean -y +sudo apt autoclean -y \ No newline at end of file diff --git a/default_panel.tar.bz2 b/default_panel.tar.bz2 new file mode 100644 index 0000000..74d34c3 Binary files /dev/null and b/default_panel.tar.bz2 differ diff --git a/download.list b/download.list new file mode 100644 index 0000000..76875b2 --- /dev/null +++ b/download.list @@ -0,0 +1,3 @@ +https://github.com/rustdesk/rustdesk/releases/download/1.4.6/rustdesk-1.4.6-x86_64.deb +https://www.xnview.com/download.php?file=XnConvert-linux-x64.deb +https://www.xnview.com/download.php?file=XnViewMP-linux-x64.deb \ No newline at end of file diff --git a/install.list b/install.list new file mode 100644 index 0000000..af5f7a7 --- /dev/null +++ b/install.list @@ -0,0 +1,11 @@ +gnome-software +nomacs +audacious +mate-system-monitor +meld +bleachbit +chromium-browser +hplip-gui +deja-dup +flatpak +gnome-software-plugin-flatpak \ No newline at end of file diff --git a/master-pdf-editor-4.3.89_qt5.amd64.deb b/master-pdf-editor-4.3.89_qt5.amd64.deb new file mode 100644 index 0000000..c47e104 Binary files /dev/null and b/master-pdf-editor-4.3.89_qt5.amd64.deb differ diff --git a/uninstall.list b/uninstall.list new file mode 100644 index 0000000..773c8b9 --- /dev/null +++ b/uninstall.list @@ -0,0 +1,2 @@ +xfce4-taskmanager +ristretto \ No newline at end of file