easytax
sudo apt install openjdk-19-jre
Download
https://msg-easytax.ch/ag/
wget https://msg-easytax.ch/ag/2022/EasyTax2022AG_linux_1_1.deb
sudo apt install openjdk-19-jre
Download
https://msg-easytax.ch/ag/
wget https://msg-easytax.ch/ag/2022/EasyTax2022AG_linux_1_1.deb
wget -O - http://repo.vivaldi.com/stable/linux_signing_key.pub | sudo apt-key add - sudo apt-add-repository -y 'deb [arch=amd64] https://repo.vivaldi.com/archive/deb/ stable main' sudo apt update sudo apt install -y vivaldi-stable
Download Server Live iso
https://releases.ubuntu.com/21.04/ubuntu-21.04-live-server-amd64.iso
wget https://releases.ubuntu.com/21.10/ubuntu-21.10-live-server-amd64.iso -O ubuntu-21.10-live-server-amd64.iso
Copy files (to GRML boot USB pen)
Install
https://github.com/r-darwish/topgrade/releases/
URL=https://github.com/r-darwish/topgrade/releases/download/v5.5.0/topgrade-v5.5.0-x86_64-unknown-linux-gnu.tar.gz wget ${URL} -qP /tmp tar -C /tmp -xzf /tmp/topgrade-v*-x86_64-unknown-linux-gnu.tar.gz sudo mv /tmp/topgrade /usr/local/sbin
Custom configuration
# ~/.config/topgrade.toml ... remote_topgrades = ["www.example.com", "db.example.com"] [git] repos = [ "~/git/repository_1", "~/git/repository_2" ] ...
Run update
topgrade -cy
Run on specific remote host
topgrade -cy --only remotes --remote-host-limit ".*.example.com"
Links
https://github.com/r-darwish/topgrade
https://github.com/r-darwish/topgrade/releases
Install
sudo apt install -y restic
Configure systemd
Install as Docker container
http://www.panticz.de/docker/container/gitea
APT packages
https://gitlab.com/packaging/gitea
Download archive
https://dl.gitea.io/gitea/
Migrate from gogs
https://docs.gitea.io/en-us/upgrade-from-gogs/
Backup
https://docs.gitea.io/en-us/backup-and-restore/
Links
https://gitea.io/
sudo apt-get install -y tinyproxy sed -i 's|#Allow 192.168.0.0/16|Allow 192.168.0.0/16|g' /etc/tinyproxy.conf sed -i 's|Port 8888|Port 8080|g' /etc/tinyproxy.conf service tinyproxy restart
<?php
$URL="https://raw.githubusercontent.com/panticz/installit/master/install.vmware-player.sh";
echo "wget -q --no-check-certificate $URL -O - | bash -";
echo "
"; $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_URL, $URL); echo htmlspecialchars(curl_exec($c)); curl_close($c); echo "
";
?>
sudo apt-get install -y open-vm-tools
<?php
$URL="https://raw.githubusercontent.com/panticz/installit/master/install.projectlibre.sh";
echo "wget -q --no-check-certificate $URL -O - | bash -";
echo "
"; $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_URL, $URL); echo htmlspecialchars(curl_exec($c)); curl_close($c); echo "
";
?>
Links
https://sourceforge.net/projects/projectlibre/files/ProjectLibre/
<?php
$URL="https://raw.githubusercontent.com/panticz/preseed/master/pxe/scripts/create.network.install.iso.sh";
echo "wget -q --no-check-certificate $URL -O - | bash -s";
echo "
"; $c = curl_init(); curl_setopt($c, CURLOPT_URL, $URL); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); echo htmlspecialchars(curl_exec($c)); curl_close($c); echo "
";
?>