Script init
adding scripts and initial files
This commit is contained in:
BIN
Referenzsystem erstellen.odt
Normal file
BIN
Referenzsystem erstellen.odt
Normal file
Binary file not shown.
25
autoinstall.sh
Normal file
25
autoinstall.sh
Normal file
@@ -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
|
||||||
BIN
default_panel.tar.bz2
Normal file
BIN
default_panel.tar.bz2
Normal file
Binary file not shown.
3
download.list
Normal file
3
download.list
Normal file
@@ -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
|
||||||
11
install.list
Normal file
11
install.list
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
gnome-software
|
||||||
|
nomacs
|
||||||
|
audacious
|
||||||
|
mate-system-monitor
|
||||||
|
meld
|
||||||
|
bleachbit
|
||||||
|
chromium-browser
|
||||||
|
hplip-gui
|
||||||
|
deja-dup
|
||||||
|
flatpak
|
||||||
|
gnome-software-plugin-flatpak
|
||||||
BIN
master-pdf-editor-4.3.89_qt5.amd64.deb
Normal file
BIN
master-pdf-editor-4.3.89_qt5.amd64.deb
Normal file
Binary file not shown.
2
uninstall.list
Normal file
2
uninstall.list
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
xfce4-taskmanager
|
||||||
|
ristretto
|
||||||
Reference in New Issue
Block a user