How-to


netcup + froxlor

Froxlor Trigger cronjob /usr/bin/php /var/www/froxlor/scripts/froxlor_master_cronjob.php –force –debug # Possible jobs: # “–backup” for start backup job # “–letsencrypt” FTP user Is created automatically with the Froxlor user (same password). WordPress update: check for correct ownership of the files copied to the directory. If you used “root”-FTP user to copy the […]


VirtualBox + Linux + SharedFolder

SharedFolder Install VB utils (Ubuntu): sudo apt-get install virtualbox-guest-utils Manually mount shared folder: mount.vboxsf -w -o umask=0007,uid=1000,gid=1000 shared_name /<target> umask: set persmissions (0007 -> full perm to owner and group, no perm to other) uid/gid: user and group id shared_name: the name given in VB dialog for the shared folder […]


Windows or Java Application as Windows Service

Windows applications see: http://www.serverhowto.de/Applikationen-als-Dienste-einrichten.228.0.html Java applications (JAR) We use YAJSW to create a service wrapper for the JAR application. Precondition: Download YAJSW Java 1.5 or higher (to check call java -version) NOTE: to display system tray java 1.6 is required. For thread dump with locks java 1.6 is required. How-to use […]