• VPN – OpenVPN – Ubuntu (Server) – Windows (Client) – Android (Client)

    Ubuntu Install sudo apt-get install openvpn sudo apt-get install easy-rsa  

  • Sync Video + Audio from different sources

    Used Software ffmpeg: demux/merge MAGIX Video deluxe 2014 Premium: automatic sync video and audio SOX (optional): clean audio    

  • 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 /<target>: the folder inside Linux…

  • Apache + Linux Mint

    Install Ubuntu Apache: http://wiki.ubuntuusers.de/Apache sudo apt-get install apache2 Ubuntu PHP: http://wiki.ubuntuusers.de/PHP sudo apt-get install php5 Ubuntu phpMyAdmin: http://www.zentralplan.de/?37 sudo apt-get install mysql-server phpmyadmin php5-gd Change user and group recursive: # Add user to a group usermod -a -G groupName userName # Change owner chown -R www-data:www-data /media/root/ # Change rights chmod 750 /home/paul/oc -R   Configuration  Web path…

  • HP ProLiant MicroServer

    HP ProLiant MicroServer G7 N54L 1P 4 GB-U, Netzteil mit 150 W, Server http://www8.hp.com/de/de/products/proliant-servers/product-detail.html?oid=5336627 http://h18004.www1.hp.com/products/servers/service_packs/en/index.html Guter Thread: http://www.hardwareluxx.de/community/f101/hp-proliant-n36l-n40l-n54l-microserver-752079-print.html

  • Android on Wave 1 S8500

    ICZen Final Howto Install Howto Install 2 zImage NAND: zImage.ics.xp.nand Boot FOTA: armlinux_boot  

  • 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 (src): Unpack the zip file…

  • How-to remote shutdown/restart of Windows 8

    How to remote shutdown or restart a Windows 8 PC inside a Workgroup will be explained in this How-to. Windows has already a integrated solution to remote shutdown an other Windows system. But there are some points that must be cleared before you can use this. Workgroup and User At first, the local and target system…

  • How-to configure Xdebug + XAMPP + Aptana Studio 3 on Windows

    This how-to will describe how to configure Aptana Studio 3 on Windows with XAMPP and Xdebug to be able to debug PHP code.   Enable Xdebug in apache The first thing, that we should do is to enable Xdebug on XAMPP. For this we must edit the php.ini file that configurates the php module. So…