Install Subversion on Debian

First of all, install these packages: apache2, php5, subversion. # apt-get install apache2 # apt-get install libapache2-mod-php5 # apt-get install subversion # apt-get install libapache2-svn Create repository folder. # mkdir /subversion # svnadmin create –fs-type fsfs /subversion/kendal Make sure subversion is activated in apache. # a2enmod dav # a2enmod dav_svn Create user account for subversion….

Read More

How to Setup Github Actions

Here is a concise guide to Setup Github Actions. 1. Generating SSH Keys for GitHub Login to your server which hosting your application. ed25519 is the recommended algorithm (faster and more secure than RSA). Save location: Press Enter to use the default (/root/.ssh/id_ed25519). Passphrase: Press Enter twice to leave it empty (required for automated deployments)….

Read More
mstscax.dll

How to Fix RDCMan Problem: “Incompatible version of mstscax.dll”

This problem happens when you are using Remote Desktop Connection Manager (RDCMan) with not updated Terminal Service Client. To fix this problem you have to download and install the latest Terminal Service Client 6.1 from below website. For Windows XP: http://www.microsoft.com/download/en/details.aspx?id=7208 For Windows Server 2003: http://www.microsoft.com/download/en/details.aspx?id=21296

Read More

Connect to Wireless Network (WPA) in Ubuntu 11.04 using Command Line

Install wpa supplicant package: $ sudo apt-get install wpasupplicant Configure network ESSID and passphrase. In this example I use ESSID ‘yantoknuk-singtel’ and passphrase ‘ngumbahkucing’. $ wpa_passphrase yantoknuk-singtel # reading passphrase from stdin After that, type in your passphrase right below the text ‘# reading passphrase from stdin’. # reading passphrase from stdin ngumbahkucing network={ ssid=”yantoknuk-singtel”…

Read More

Build FreeBSD Kernel

Make sure kernel source is installed. If it is not installed, use ‘sysinstall’ command. Copy kernel GENERIC configuration: # cd /usr/src/sys/i386/conf/ # cp GENERIC KERNELNEW Edit KERNELNEW configuration as your needed: # ee KERNELNEW And then, build the kernel: # cd /usr/src # make buildkernel KERNCONF=KERNELNEW # make installkernel KERNCONF=KERNELNEW Finish. Reboot PC. To build…

Read More