-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_iso
119 lines (83 loc) · 2.58 KB
/
create_iso
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# from cubic
sudo apt-get update
sudo apt-get upgrade
# unzip
sudo apt install unzip
# htop
sudo apt install htop
# sensors to check cpu temp etc.
sudo apt-get install lm-sensors
sudo apt-get install stress htop iotop lm-sensors
# curl
sudo apt install curl
# gparted
sudo apt install gparted
# tailscale
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add -
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list
sudo apt-get update
sudo apt-get install tailscale
#xclip
sudo apt-get install xclip
# chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
# smb client to connect to windows machines
sudo apt install smbclient
sudo apt install cifs-utils
# 7-zip
sudo apt-get install p7zip-full
# rclone
sudo apt install curl
curl https://rclone.org/install.sh | sudo bash
# git
sudo apt install git
#tmux
sudo apt install tmux
# ssh
sudo apt install openssh-server
sudo ufw allow ssh
# stuff for compiling pest
sudo apt-get install gfortran
sudo apt-get install make
# client remote desktop (remmina)
sudo apt-add-repository ppa:remmina-ppa-team/remmina-next
sudo apt update
sudo apt install remmina remmina-plugin-rdp remmina-plugin-secret
# server remote desktop
sudo apt install xrdp
# support for winapps
sudo apt-get install -y freerdp2-x11
# faster image viewer
sudo add-apt-repository ppa:easymodo/qimgv
sudo apt update
sudo apt install qimgv
#xournal (pdf viewer)
sudo apt-get install xournal
# pdf arranger
sudo apt install pdfarranger
# Okular (pdf viewer)
sudo apt install okular
# Latex
sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
# pandoc
sudo apt-get install pandoc
# latexmk (Pdfs from sphinx docs)
sudo apt install latexmk
# flameshot screen capture
sudo apt-get install flameshot
# libre office
sudo apt install libreoffice
# qgis # check version here: https://www.qgis.org/en/site/forusers/alldownloads.html#debian-ubuntu
sudo apt install gnupg software-properties-common
sudo mkdir -m755 -p /etc/apt/keyrings # not needed since apt version 2.4.0 like Debian 12 and Ubuntu 22 or newer
sudo wget -O /etc/apt/keyrings/qgis-archive-keyring.gpg https://download.qgis.org/downloads/qgis-archive-keyring.gpg
sudo apt update
sudo apt install qgis qgis-plugin-grass
# inkscape
sudo add-apt-repository universe
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt-get update
sudo apt install inkscape
# support for pyqt6
sudo apt install libxcb-cursor0