Last active 1736948811

Revision 5ab1ad0d418b88ebb2e376d7194bcc92fdf36251

installation.sh Raw
1#!/bin/bash
2
3# Kolla om till exempel qimgv är installerat eller inte
4
5# VARIABLES
6dir_home='/home/airikr'
7dir_backup='backup-ssd-dir'
8YELLOW='\033[1;33m'
9BLUE='\033[0;34m'
10NC='\033[0m'
11SLEEP='.5'
12
13# COPY > PASTE
14echo && printf "${YELLOW}Restoring bash files" && printf "${NC}" && echo && echo && sleep .5
15sudo rsync -aP "${dir_backup}"/"${dir_home}"/.bashrc "${dir_home}"/
16sudo rsync -aP "${dir_backup}"/"${dir_home}"/.bash_aliases "${dir_home}"/
17sudo rsync -aP "${dir_backup}"/"$dir_home"/systembackup.sh "$dir_home"/
18sudo rsync -aP "${dir_backup}"/"$dir_home"/transferphotos-card.sh "${dir_home}"/
19sudo rsync -aP "${dir_backup}"/"${dir_home}"/transferphotos-ext.sh "${dir_home}"/
20sudo rsync -aP "${dir_backup}"/"${dir_home}"/transferphotos-ext.sh "${dir_home}"/
21
22echo && printf "${YELLOW}Restoring the fstab file" && printf "${NC}" && echo && echo && sleep .5
23sudo cp /etc/fstab /etc/fstab.bak
24sudo rsync -aP "${dir_backup}"/etc/fstab /etc/
25
26echo && printf "${YELLOW}Sourcing the bash_aliases file" && printf "${NC}" && echo && echo && sleep ${SLEEP}
27source "${dir_home}"/.bash_aliases
28
29# UNINSTALL
30echo && printf "${YELLOW}Uninstalling bloatware" && printf "${NC}" && echo && echo && sleep .5
31which parole | grep -o parole > /dev/null && sudo pacman -Rcns parole || echo '${BLUE}parole is not installed${NC}'
32which firewalld | grep -o firewalld > /dev/null && sudo pacman -Rcns firewalld || echo '${BLUE}firewalld is not installed${NC}'
33which galculator | grep -o galculator > /dev/null && sudo pacman -Rcns galculator || echo '${BLUE}galculator is not installed${NC}'
34which ristretto | grep -o ristretto > /dev/null && sudo pacman -Rcns ristretto || echo '${BLUE}ristretto is not installed${NC}'
35which cmake | grep -o cmake > /dev/null && sudo pacman -Rcns cmake || echo '${BLUE}cmake is not installed${NC}'
36which eos-quickstart | grep -o eos-quickstart > /dev/null && sudo pacman -Rcns eos-quickstart || echo '${BLUE}eos-quickstart is not installed${NC}'
37which eos-apps-info | grep -o eos-apps-info > /dev/null && sudo pacman -Rcns eos-apps-info || echo '${BLUE}eos-apps-info is not installed${NC}'
38which welcome | grep -o welcome > /dev/null && sudo pacman -Rcns welcome || echo '${BLUE}welcome is not installed${NC}'
39
40# UPDATE
41echo && printf "${YELLOW}Updating" && printf "${NC}" && echo && echo && sleep ${SLEEP}
42yay -Syu --noconfirm
43
44# INSTALL
45echo && printf "${YELLOW}Installing softwares" && printf "${NC}" && echo && echo && sleep ${SLEEP}
46yay -S --noconfirm mullvad-vpn-bin vscodium-bin qimgv-git ttf-victor-mono smartgit blue-recorder-git josm-stable xfce4-panel-profiles xfce4-docklike-plugin
47sudo pacman -S thunderbird darktable gramps steam inter-font mpv obs-studio filezilla element-desktop mumble speedcrunch virtualbox ufw sshfs python-pip gtk2 ttc-iosevka kcolorchooser skanlite yt-dlp openssh wine qmmp gimp shotcut qbittorrent inkscape gamemode lib32-gamemode krita cifs-utils gajim jellyfin-server jellyfin-web syncthing telegram-desktop perl-image-exiftool npm lite-xl
48wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash
49
50# CREATE FOLDER
51echo && printf "${YELLOW}Creating missing folders" && printf "${NC}" && echo && echo && sleep ${SLEEP}
52sudo mkdir /mnt/Backup
53sudo mkdir /mnt/NAS
54sudo mkdir /mnt/Synology
55
56# INSTALL GRAPHIC DRIVERS
57echo && printf "${YELLOW}Installing graphic cards stuff" && printf "${NC}" && echo && echo && sleep ${SLEEP}
58install_no nvidia nvidia-settings nvidia-utils lib32-nvidia-utils lib32-opencl-nvidia opencl-nvidia libvdpau libxnvctrl vulkan-icd-loader lib32-vulkan-icd-loader
59
60# CONFIG
61echo && printf "${YELLOW}Configuring the graphic card" && printf "${NC}" && echo && echo && sleep ${SLEEP}
62sudo nvidia-xconfig
63sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.d/20-nvidia.conf
64
65
66
67# COPY > PASTE
68echo && printf "${YELLOW}Restoring backed up files" && printf "${NC}" && echo && echo && sleep ${SLEEP}
69sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/darktable/ "${dir_home}"/.config/darktable/
70sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/mpv/ "${dir_home}"/.config/mpv/
71sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/'Mullvad VPN'/ "${dir_home}"/.config/'Mullvad VPN'/
72sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/qimgv/ "${dir_home}"/.config/qimgv/
73sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/obs-studio/ "${dir_home}"/.config/obs-studio/
74sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/smartgit/ "${dir_home}"/.config/smartgit/
75sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/filezilla/ "${dir_home}"/.config/filezilla/
76sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/GIMP/ "${dir_home}"/.config/GIMP/
77sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/FreeFileSync/ "${dir_home}"/.config/FreeFileSync/
78sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/JOSM/ "${dir_home}"/.config/JOSM/
79sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/Joplin/ "${dir_home}"/.config/Joplin/
80sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/joplin-desktop/ "${dir_home}"/.config/joplin-desktop/
81sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/SpeedCrunch/ "${dir_home}"/.config/SpeedCrunch/
82sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/VSCodium/ "${dir_home}"/.config/VSCodium/
83sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/VirtualBox/ "${dir_home}"/.config/VirtualBox/
84sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/qBittorrent/ "${dir_home}"/.config/qBittorrent/
85sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/lite-xl/ "${dir_home}"/.config/lite-xl/
86sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/qmmp/ "${dir_home}"/.config/qmmp/
87sudo rsync -aP "${dir_backup}"/"${dir_home}"/.config/Mumble/ "${dir_home}"/.config/Mumble/
88sudo rsync -aP "${dir_backup}"/"${dir_home}"/.mozilla/firefox/ "${dir_home}"/.mozilla/firefox/
89
90sudo rsync -aP "${dir_backup}"/"${dir_home}"/.thunderbird/ "${dir_home}"/.thunderbird/
91sudo rsync -aP "${dir_backup}"/"${dir_home}"/.joplin/ "${dir_home}"/.joplin/
92sudo rsync -aP "${dir_backup}"/"${dir_home}"/.vscode-oss/ "${dir_home}"/.vscode-oss/
93
94sudo rsync -aP "${dir_backup}"/"${dir_home}"/Pictures/Wallpapers/ "${dir_home}"/Pictures/Wallpapers/
95sudo rsync -aP "${dir_backup}"/"${dir_home}"/Documents/ "${dir_home}"/Documents/
96
97
98
99# JELLYFIN
100echo && printf "${YELLOW}Configuring Jellyfin" && printf "${NC}" && echo && echo && sleep ${SLEEP}
101sudo rsync -aP "${dir_backup}"/var/lib/jellyfin/ /var/lib/jellyfin/
102sudo chown -R jellyfin:jellyfin /var/lib/jellyfin/
103sudo chmod -R 777 /var/lib/jellyfin/
104sudo systemctl restart jellyfin.service
105
106
107
108# APACHE
109echo && printf "${YELLOW}Installing Apache" && printf "${NC}" && echo && echo && sleep ${SLEEP}
110sudo pacman -Sy apache
111
112# MYSQL
113echo && printf "${YELLOW}Installing MariaDB" && printf "${NC}" && echo && echo && sleep ${SLEEP}
114sudo pacman -Sy mariadb
115sudo mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
116sudo systemctl start mariadb.service
117sudo mysql_secure_installation
118
119# PHP
120echo && printf "${YELLOW}Installing PHP" && printf "${NC}" && echo && echo && sleep ${SLEEP}
121sudo pacman -Sy php php-apache php-gd php-fpm php-sqlite php-pgsql
122
123# ENABLE BOOT
124echo && printf "${YELLOW}Enabling services for boot" && printf "${NC}" && echo && echo && sleep ${SLEEP}
125sudo systemctl enable mysqld httpd sshd jellyfin syncthing@airikr.service
126
127# START
128echo && printf "${YELLOW}Starting SSH & Syncthing" && printf "${NC}" && echo && echo
129sudo systemctl start sshd syncthing@airikr.service
130
131# COMPOSER
132echo && printf "${YELLOW}Installing Composer" && printf "${NC}" && echo && echo && sleep ${SLEEP}
133php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
134php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
135php composer-setup.php
136php -r "unlink('composer-setup.php');"
137sudo mv composer.phar /usr/local/bin/composer
138
139# GEOSPATIAL
140git clone https://github.com/php-geospatial/geospatial.git
141cd geospatial
142phpize
143./configure --enable-geospatial
144make
145sudo make install
146
147# COPY > PASTE
148echo && printf "${YELLOW}Restoring configuration files for web server" && printf "${NC}" && echo && echo && sleep ${SLEEP}
149sudo rsync -aP "${dir_backup}"/etc/httpd/conf/httpd.conf /etc/httpd/conf/
150sudo rsync -aP "${dir_backup}"/etc/httpd/conf/extra/phpmyadmin.conf /etc/httpd/conf/extra/
151sudo rsync -aP "${dir_backup}"/etc/php/php.ini /etc/php/
152
153echo && printf "${YELLOW}Restoring website projects" && printf "${NC}" && echo && echo && sleep ${SLEEP}
154sudo rsync -aP "${dir_backup}"/srv/http/ /srv/http/
155
156# RESTART
157echo && printf "${YELLOW}Restarting Apache" && printf "${NC}" && echo && echo && sleep ${SLEEP}
158sudo systemctl restart httpd.service
159
160# ADDING USER
161sudo usermod -a -G vboxusers $USER
162
163# INSTRUCTIONS
164printf "${BLUE}"
165echo
166echo '--------'
167echo
168echo 'sudo mysql'
169echo 'ALTER USER 'root'@'localhost' IDENTIFIED VIA mysql_native_password USING PASSWORD('password');' # Only if root's password is wrong.
170echo 'quit'
171echo 'mysql -u root -p'
172echo 'CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';'
173echo 'GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost';'
174echo 'quit'
175echo
176echo '--------'
177echo
178echo 'sudo nano /etc/X11/xorg.conf.d/20-nvidia.conf'
179echo 'Follow the instructions below NVIDIA Improvements at https://steamcommunity.com/sharedfiles/filedetails/?id=1787799592'
180echo
181echo 'Download FreeFileSync at https://freefilesync.org/'
182echo
183echo 'Log out and then log back in again to enable vboxusers'
184printf "${NC}"