Anleitung für Ubuntu 16.04, die Links für die Aktualisierung oder Installation auf Ubuntu 19.10 findet man weiter unten.
So, Tasmoadmin läuft auch auf Proxmox und Ubuntu CT
apt-get update && apt-get upgrade
apt-get install apache2
apt-get install php
apt-get install libapache2-mod-php
apt-get install php7.2-curl
apt-get install php7.2-zip
apt-get install git
apt-get install vim
git clone https://github.com/reloxx13/TasmoAdmin.git /var/www/tasmoadmin
chown -R www-data:www-data /var/www/tasmoadmin
chmod 777 /var/www/tasmoadmin/tasmoadmin/tmp && sudo chmod 777 /var/www/tasmoadmin/tasmoadmin/data
rm /etc/php/7.0/apache2/conf.d/opcache.ini
vim /etc/apache2/sites-available/tasmoadmin.conf
Drücke i für insert Mode und füge dies hinzu...
<VirtualHost *:9999>
ServerName tasmoadmin
ServerAdmin webmaster@localhost
DocumentRoot /var/www/tasmoadmin/tasmoadmin
<Directory /var/www/tasmoadmin/tasmoadmin>
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
Drücke ESC um den insert Mode zu verlassen
Gebe :wq ein (Doppelpunkt wq) und drücke Enter zum Speichern
vim /etc/apache2/ports.conf
Drücke i für insert Mode und füge Listen 9999 hinzu...
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 9999
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Drücke ESC um den insert Mode zu verlassen
Gebe :wq ein (Doppelpunkt wq) und drücke Enter zum Speichern
a2ensite tasmoadmin
a2enmod rewrite
service apache2 restart
Jetzt kann man Tasmoadmin im Browser mit der vergebenen IP aufrufen, zum Beispiel 192.168.0.100:9999
Quelle:https://github.com/reloxx13/TasmoAdmin/wiki/Guide-for-Ubuntu-Server-16.04
Bei dieser lächerlichen Auslastung mit 3x Ubuntu CT (Pihole, ioBroker, Tasmoadmin) auf einem PC der meinen IntelNUC gleicht, bin ich jetzt langsam am Überlegen, ob ist auf meinem IntelNUC vielleicht doch Proxmox installiere, die große Frage ist jedoch, wie bekomme ich Windows 10 so installiert (VM), dann meine ganzen externen Laufwerke eingebunden werden und ob dann die ganzen Freigaben usw. alles problemlos funktionieren?