Posts

Showing posts from April, 2011

Things that always happen

Below could be happen when developing android app. Unable to open sync connection! Try to re-enable USB debugging on the phone. Forcely uninstall app. Find the apk file of app. Remove the apk file: adb shell rm /system/sd/app/com.android.cardock.apk PS: needs ROOT. ... continue

Installing LAMP On Ubuntu For Newbies

In this guide I will show you how to install a LAMP system. LAMP stands for L inux, A pache, M ySQL, P HP. The guide is intended to help those who have very little knowlegde of using Linux. Install Apache To start off we will install Apache. 1. Open up the Terminal ( Applications > Accessories > Terminal ). 2. Copy/Paste the following line of code into Terminal and then press enter: sudo apt-get install apache2 3. The Terminal will then ask you for you're password, type it and then press enter. Testing Apache To make sure everything installed correctly we will now test Apache to ensure it is working properly. 1. Open up any web browser and then enter the following into the web address: http://localhost/ You should see a folder entitled apache2-default/ . Open it and you will see a message saying "It works!" , congrats to you! Install PHP In this part we will install PHP 5. Step 1. Again open up the Terminal ( Applications > Accessories >...