Oracle Database Export and Import compressed

Export #!/bin/bash $username=<username> $password=<password> $exportfile=<importfile> $exportlog=<importlog> $DBNAME=<dbname> mknod pipe p cat pipe |gzip -c >$exportfile & exp $username/$password@$DBNAME file=pipe DIRECT=Y...

Install NX Server on Ubuntu

1. Open an terminal and enter: on ubuntu 12.04: sudo add-apt-repository ppa:freenx-team/ppa on ubuntu 14.04: sudo add-apt-repository ppa:freenx-team/trusty sudo apt-get update sudo apt-get install freenx-server sudo dpkg-reconfigure freenx-server Troubleshooting on...

Installing XRDP on Ubuntu Server for RDP connection

1. Install the Ubuntu Desktop environment and a RDP Server: sudo apt-get install ubuntu-desktop xrdp   2. Create a new user and add grant sudo rights: sudo adduser USERNAME sudo adduser USERNAME sudo   3. Set users xsession configuration: sudo su USERNAME...

Android Studio gradle error

Error:Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an unrecognized jvm option is used. Please refer to the user guide chapter on the daemon at...

SSL HTTPS Turtorial

On a shell: openssl genrsa -out programmierung-dresden.de.key 2048 openssl req -new -key programmierung-dresden.de.key -out programmierung-dresden.de.csr and a step by step guide on: http://www.h-online.com/security/features/SSL-for-free-step-by-step-906862.html...

SQL extend a Recordset / VBA DAO etc.

Sometimes you will get a problem if you want to add a data entry to a recordset, it can be done without the need of inserting the data entry to the table. It is a little bit tricky but with a union statement you can do following: your normal statement looks like:...

SSH without a password

You can login with password or with certificates. To generate certificates use this commands and accept all questions with enter: ssh-keygen -t rsa ssh-keygen -t dsa This will generate a public and private certificate pair under ~/.ssh/  Now you can authorise a user...

Setting up WordPress under Debian

On a shell: sudo apt-get install wordpress mysql-server cd /usr/share/doc/wordpress/examples gzip -d setup-mysql sudo a2dissite 000-default sudo bash setup-mysql -n db_name programmierer-dresden.com   Finish
de_DEDeutsch