Day: May 1, 2014

  • 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…