2014/12/19

Install Bugzilla with Testopia on Windows Server 2008 R2 SP1

1. Download and install MySQL.
    mysql-installer-community-5.6.22.0.msi
2. Download and install ActivePerl.
    ActivePerl-5.16.3.1604-MSWin32-x86-298023.msi
3. Download and install Apache.
    httpd-2.2.25-win32-x86-openssl-0.9.8y.msi
4. Download Bugzilla
    bugzilla-4.4.6.tar.gz
    Extract to C:\bugzilla-4.4.6
5. Download Testopia
    testopia-2.5-BUGZILLA-4.2.tar.gz

2014/12/17

Install Bonobo Git Server on Windows Server 2008 R2 SP1

1. Install .NET Framework 3.5.1
2. Install IIS 7.0
3. Install .NET Framework 4.5
4. Install ASP.NET MVC 4
5. Open cmd.exe as administrator
6. cd C:\Windows\Microsoft.NET\Framework\v4.0.30319
7. aspnet_regiis.exe -ir

2014/11/03

How to upgrade Android - 5.0 Lollipop preview on Nexus5 and Nexus7 (2013)

Go to Android Developers
Download Android SDK Manager and Android - 5.0 Lollipop for Nexus5/Nexus7 images.
Install Java JRE 8
Install Android SDK

Use the commands under cmd to check your device is exist.
adb.exe devices (Power on)
or
fastboot.exe devices (Fastboot mode)
Unlock your device.
fastboot.exe oem unlock

2014/09/01

How to install VMware Player 6 on Linux Mint

a. VMware Player for 32bit OS.
1. sudo su then enter your root password.
2. apt-get install build-essential linux-headers-`uname -r`
3. mkdir ~/VMware
4. cd VMware
5. wget -c http://goo.gl/kkfRJg -O VMware-Player-i386.bundle.tar
6. tar -xvf VMware-Player-i386.bundle.tar
7. chmod +x VMware-Player-6.0.1-1379776.i386.bundle
8. sh VMware-Player-6.0.1-1379776.i386.bundle

b. VMware Player for 64bit OS.
1. sudo su then enter your root password.
2. apt-get install build-essential linux-headers-`uname -r`
3. mkdir ~/VMware
4. cd VMware
5. wget -c http://goo.gl/Uxia2s -O VMware-Player-x86_64.bundle.tar
6. tar -xvf VMware-Player-x86_64.bundle.tar
7. chmod +x VMware-Player-6.0.1-1379776.x86_64.bundle
8. sh VMware-Player-6.0.1-1379776.x86_64.bundle

2014/01/08

Linux Mint - Install PPTP VPN Server

1. Install PPTP VPN Server.
apt-get install pptpd

2. Edit pptpd.conf file to add your VPN server ip settings.
gedit /etc/pptpd.conf
--------------------------------------------
localip 192.168.60.10
remoteip 192.168.60.20-30
--------------------------------------------

3. Edit pptpd-options file to add dns server and encryption.
gedit /etc/ppp/pptpd-options
--------------------------------------------
ms-dns 8.8.8.8
ms-dns 4.4.4.4

#require-mschap-v2
+chap
--------------------------------------------

2014/01/03

Ubuntu - Install and Set DHCP Server

1. Open Terminal
2. sudo su then enter your root password.
3. apt-get install isc-dhcp-server
4. gedit /etc/dhcp/dhcpd.conf

subnet 192.168.60.1 netmask 255.255.255.0 {
  range 192.168.60.100 192.168.60.200;
  option routers 192.168.60.1;
  option broadcast-address 192.168.60.255;
  default-lease-time 600;
  max-lease-time 7200;
}