How to Install/Run A WordPress Blog on a Palm Pre!
(Download This YouTube Video using FREE FLVDirect software)
(screenshot of SSH Top command showing processes running on my Palm Pre)
Since the Palm Pre is based on Linux, I figured that you could probably run a WordPress blog on the Palm Pre. Well, after about 3 hours of research, I found a way to run a wordpress blog using Optware Lighttpd and MySQL server. (Lighttpd is a “light” version of Apache pretty much and would be perfect candiate for the Palm Pre since its hardware isn’t made for full-fledged websites rather for a smartphone.)
I think this might be a great way to host your personal websites that your family and friends visit without having to pay for hosting fees. (Well, just be careful Sprint doesn’t find out…)
Anyways, I am amazed that you can actually run a WordPress blog on the Palm Pre, here’s detailed step-by-step instructions so you can do it too.
You will have to first learn how to SSH into your Palm Pre, after doing that follow the rest of the directions outlined here.
P.S. If you have never dealt with Linux, just be patient and feel free to ask me questions on the comments line as I will do my best to help you setup a WordPress blog on your Palm Pre.
1) First, we will need to mount the filesystem to be writable. Go SSH into your Palm Pre to the linux command prompt and type the following. (Please press enter after any of these code lines of course…)
sudo mount -o remount,rw /
2) Next, let’s install optware MySQL package by typing the command below:
sudo ipkg-opt install mysql
You will get the following messages if installation is successful.
To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! To do so, start the server, then issue the following commands: /opt/bin/mysqladmin -u root password 'new-password' /opt/bin/mysqladmin -u root -h castle password 'new-password' See the manual for more instructions. You can start the MySQL daemon with: cd /opt ; /opt/bin/mysqld_safe & You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory: cd sql-bench ; perl run-all-tests Please report any problems with the /opt/bin/mysqlbug script! The latest information about MySQL is available on the web at http://www.mysql.com Support MySQL by buying support/licenses at http://shop.mysql.com Starting MySQL SUCCESS! Successfully terminated.
3) Let’s reset our MySQL root password by typing the following command where new-password should be your new password. (Please make a note of your MySQL root password as we will need it later for WordPress configuration file.)
/opt/bin/mysqladmin -u root password 'new-password'
4) Next, let’s create a new database for the MySQL server so we can use it for the WordPress blog.
/opt/bin/mysql -u root mysql> create database test; mysql> quit;
5) Next, we will install Lighttpd, which is the light version of Apache.
sudo ipkg-opt install lighttpd php-fcgi
Your web root will be in the following directory:
/opt/share/www/
6) Next, we will edit the Lighttpd port to 9999 to not interfere with other httpd processes on the Palm Pre:
sudo vi /opt/etc/lighttpd/lighttpd.conf
Change the server.port form 8081 to 9999 like here:
(You will need to type “i” to start typing…refer to complete VI command instructions here or you can use your favorite linux editor too.)
## bind to port (default: 80) server.port = 9999
Press the Esc key on your keyboard and “:wq!” to save file and exit back to command prompt.
7) Next, we will setup a start-up event so our lighttpd and mysqld server runs at boot time and when your phone is on:
sudo vi /etc/event.d/optware-lighttpd
Copy and paste the following: (hit “i” and Shift+Ins in the editor)
# don't start until the WebOS finishes it's normal boot # that way no delay is added to the GUI startup start on stopped finish stop on runlevel [!2] # Restart the lighttpd daemon if it exits/dies respawn exec /opt/sbin/lighttpd -f /opt/etc/lighttpd/lighttpd.conf pre-start script /usr/sbin/iptables -D INPUT -p tcp --dport 9999 -j ACCEPT || /bin/true /usr/sbin/iptables -I INPUT -p tcp --dport 9999 -j ACCEPT /opt/bin/mysqld_safe & end script
Press Esc key and “:wq!” to save file and exit VI editor.
Now we will need to install the blog. Since this is a test, we will install it in a subdirectory called /blog.
Browse to the web root by typing the cd command below:
cd /opt/share/www/
9) Next, let’s make a new directory called blog:
sudo mkdir blog
10) Enter the blog directory:
cd blog
11) Let’s download the latest version of WordPress:
sudo wget http://wordpress.org/latest.zip
12) Unzip the WordPress zip file:
sudo unzip latest.zip
13) Copy the files in wordpress directory to the blog directory like this:
sudo cp wordpress/* . -rf
14) Open up your dynamic domain name on your browser like this:
http://MyDynamicDNS.blogdns.com:9999/blog/
15) If you get a screen like below, you are ready to rock, let’s go back to the Linux command prompt and edit the WordPress configuration files so we can setup the new WordPress Blog.
16) We will first move the wp-config-sample.php file to wp-config.php.
sudo mv wp-config-sample.php wp-config.php
17) And let’s edit the WordPress config file:
sudo vi wp-config.php
18) Change the following lines to your database name and root password:
define('DB_NAME', 'test');
define('DB_USER', 'root');
define('DB_PASSWORD', 'mypassword');
19) Since we are using Lighttpd, we need to tell PHP where the www root is, so let’s edit the php.ini file like this:
(This is to enable the MySQL server to work with Lighttpd! If you don’t do this step you will get a DATABASE ERROR message because PHP cannot find your web root.)
sudo vi /opt/etc/php.ini
20) Find the following line and add /opt/share/www to doc_root parameter:
doc_root ="/opt/share/www/"
21) Hit Escape key and “:wq!” to save and exit.
22) Next reboot your Palm Pre so the changes take effect:
sudo /sbin/reboot
23) Open up your dynamic domain name on your browser again (on your computer of course!):
http://MyDynamicDNS.blogdns.com:9999/blog/
You should now see something like this:
24) Fill out Blot Title, E-mail, and “Install WordPress”!
25) Log In using the admin username and password provided.
26) Open up your dynamic domain name on your browser again…
http://MyDynamicDNS.blogdns.com:9999/blog/
27) You should see a new WordPress blog, completely hosted on your Palm Pre. Congratulations, you did it bud.
Final Words
Based on my testing, it seems that the WordPress blog could easily handle light traffic (up to 3 concurrent users) and I am sure that could be a lot better by installing WordPress Super Cache, which I will have some test reports later this week. Also, when you run Lighttpd, you will need to refer to this guide on how to do human-friendly permalinks and to work with Super Cache. There’s also ways to optimize the Lighttpd and MySQL server, which could further enhance the Palm Pre WordPress blog.
You can also install Apache on the Palm Pre but I don’t recommend it as your Palm Pre blog will run much slower than on Lighttpd.
Well, I am sure you can also install many other types of websites running on the LAMP stack now, it doesn’t have to be a WordPress blog but I’ve laid down the foundation for you so you can save time while developing your next mobile Palm Pre website.
I wish I could publicly show you my WordPress blog running on my Palm Pre but Sprint will surely pinpoint me and cancel my contract so I will leave it up to you guys to try it out yourselves.
And don’t make your Palm Pre blog public either, I won’t be responsible if you lose your contract because of it.
*Note - This guide works well and I am no linux expert myself. I just happened to know a little bit about linux systems as I manage web servers on a daily basis. Please follow the instructions carefully and I am sure you can do it too and learn a bunch of great stuff about linux. If you ever have trouble or want to know more about certain commands, just google it!
FAQ
Q: I cannot edit files, I get a “readonly” error!
A: Whenever you reboot the Palm Pre, you will need to make the filesystem writable again, just use this code before trying to edit files:
sudo mount -o remount,rw /
Also, you might want to make sure to add “sudo” before any code. This is so you have root permissions to execute files. Sometimes I forget this and I get errors.
Q: How do I disable the web server from running?
A: To disable, use the following command and reboot your phone:
sudo chmod 000 /etc/event.d/optware-lighttpd
To enable, use the following command and reboot your phone:
sudo chmod 700 /etc/event.d/optware-lighttpd
Q: How do I reboot my phone via command line?
A: This code right here:
sudo /sbin/reboot
Reference: Commands for Restarting, Stopping Lighttpd or Mysqld
Restart lighttpd!
sudo /opt/etc/init.d/S80lighttpd restart
Start mysqld:
sudo /opt/bin/mysqld_safe & sudo /opt/bin/mysqld_safe &
Resources
I’ve used many resources to install WordPress blog on my Palm Pre. I’ve hacked existing code to make this work but I have to give credit to these guides that have helped me get through problems. (Thanks Open Source!!!)
- WebOs-Internals.Org - Lighttpd Installation instructions.
- NSLU2-linux.org – How to install MediaWiki on Optware.
- NSLU2-linux.org – How to Reset MySQL password.
Free Nexus One phones
Enter your zip code here and find out if you can qualify for 2 free Nexus One phones.











August 22nd, 2009 at 7:03 am
[...] the strange post here: How to Install/Run A WordPress Blog upon the Palm Pre! | Palm Pre … Related Posts:Download 960px wordpress themes | Island Two Palm Trees Free …Internet Marketing [...]
August 22nd, 2009 at 1:44 pm
[...] Home About RSS Follow @PalmPreHacks on Twitter « How to Install/Run A WordPress Blog on a Palm Pre! [...]
August 23rd, 2009 at 1:19 am
[...] Follow this link: How to Install/Run A WordPress Blog on a Palm Pre! | Palm Pre … [...]
August 25th, 2009 at 7:59 pm
[...] that you have Linux installed on your Pre, but that’s not that big of an issue as he has a tutorial for that too. Getting the tweet to happen involves setting up a custom PHP file that sends the tweet, then a [...]
August 28th, 2009 at 7:51 am
I cant change my password for sql…..please email me
August 28th, 2009 at 12:03 pm
Did you do this? /opt/bin/mysqladmin -u root password 'new-password' where new-password is your new password? What error message do you get?
August 28th, 2009 at 11:56 pm
Thanks a lot for writing this! But I installed it and it made my pre too slow to use (and over a 5 minute startup time!) Any ideas on fixing that?
August 29th, 2009 at 6:31 am
I get Access Denied for root user (using password = NO)
August 29th, 2009 at 12:05 pm
Hmm… that is weird, mine runs fine, do you have any other apps installed?
August 29th, 2009 at 12:06 pm
You mean for MySQL? try adding “sudo” before the command, I might have forgotten that part for some reason.
August 29th, 2009 at 12:14 pm
yep for MySQL, also I am logged in as root. This is my error.
sudo /opt/bin/mysqladmin -u root password 'new-password'
/opt/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
August 29th, 2009 at 12:39 pm
Looks as if your mysqld process is not running, did u do the command:
/opt/bin/mysqld_safe &
Sorry, I might have changed the order on the DIY…ooops, will have to update that if that's the case…
August 30th, 2009 at 5:09 am
hey how did you fix your problem because I have the same error and cant get past it.
thanks in advance
August 30th, 2009 at 10:44 am
Ditto:
josh@castle:~$ sudo /opt/bin/mysqld_safe &
josh@castle:~$ A mysqld process already exists
[1] + Done(1) sudo /opt/bin/mysqld_safe
josh@castle:~$ sudo /opt/bin/mysqladmin -u root password apassword
/opt/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
August 30th, 2009 at 12:07 pm
I found a fix. Originally I had set a password, but got this error:
root@castle:/opt# /opt/bin/mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
Then I used the following command – pure guess-work!
root@castle:/opt# /opt/bin/mysql -u root -p
and got:
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 5 to server version: 4.1.22
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
I used the password I originally set up.
August 30th, 2009 at 12:43 pm
Try without the /opt/bin/mysqladmin added:
sudo /opt/bin/mysqladmin -u root password apassword
August 30th, 2009 at 12:44 pm
Awesome, you got it working!
September 3rd, 2009 at 7:49 pm
Yea this is an awesome tutorial but by the time I got it all up and running I couldn't even bring up the launcher on the phone without it grinding to a near halt. The moment I removed the web server it sped back up completely
This is disapointing, I was looking forward to starting the “Dave's Pocket” blog.
September 3rd, 2009 at 11:21 pm
Actually I did find that the mysql and lighttpd puts a LOT of load on the Palm Pre, only when it starts up but doesn't affect performance of the Pre thereafter. If you don't mind slow starts, it's still possible. I don't really turn my Pre much, maybe once a week so it doesn't bother me.
September 10th, 2009 at 11:58 am
Does PHP come already installed on the thing, or is it part of Lighttpd? Because I didn't see you explicitly install that anywhere.
From the shots, obviously you're running php with FastCGI, just wondering how it got installed/configured.
Also, while lighttpd is far faster at static file serving, Apache+mod_php has been shown to be still somewhat quicker than lighttpd + php-fcgi. You might get slightly better results that way, although I can't say how well the pre will work with Apache's multi-threading model. If the Pre can't do threading well, then lighttpd is pretty much the only choice.
September 10th, 2009 at 5:00 pm
[...] How to Install/Run A WordPress Blog on a Palm Pre. Sweet. ¶ « Automattic Aquires AtD [...]
September 10th, 2009 at 12:11 pm
This is great example of WordPress portability! Thanks for sharing
September 10th, 2009 at 12:21 pm
PHP does come with Lighttpd which comes with PHP-FCGI installed. (the latest version.) Lighttpd I have seen does perform much better than Apache, even this blog runs Lighttpd. I also do recommend Nginx, which is run on WordPress.com and big sites like TechCrunch. Well, just my 2 cents.
I would never run Apache on anything anyways, Apache is the worst performer based on my testing:
http://webserverhacks.com/uncategorized/wordpre…
There's many many aftermarket web servers out there. For those of you who know how to use linux, there's absolutely no reason to use Apache other than ease of use. Cherokee is also a great choice although I haven't tested it yet.
September 10th, 2009 at 12:22 pm
Sure! Thanks for visitin', WordPress should be portable to anything that runs linux.
September 10th, 2009 at 1:34 pm
why?
September 10th, 2009 at 1:36 pm
The real question is, “why not?” haha.
September 10th, 2009 at 7:53 pm
[...] Link: How to Install/Run A WordPress Blog on a Palm Pre! | Palm Pre Hacks Blog!. [...]
September 10th, 2009 at 9:58 pm
[...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from web [...]
September 10th, 2009 at 5:31 pm
:O wwwwwwuuuuuuuuuuuuuuaaaaaaawwwwwwwwwwwwwww
that's an amazing combination
WordPress and a Palm Pre
September 11th, 2009 at 9:08 am
[...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from Gwibber [...]
September 11th, 2009 at 10:25 am
[...] Kolla här för instruktioner på hur du kan installera och köra WordPress på din telefon! Palm Pre kör Linux, så det bör inte vara alltför svårt. Och kanske, med lite tur och tålamod, lär jag mig bemästra GIMP så småningom. Palm Pre, WordPress, prylar, GIMP [...]
September 11th, 2009 at 6:44 pm
[...] a detailed explanation on how to run your WordPress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]
September 11th, 2009 at 7:47 pm
[...] my favorite blogging platform. Palm Pre, a nice mobile device. Matt found this post on how to install a LAMP stack on a Palm Pre and serve a WordPress blog from the mobile [...]
September 11th, 2009 at 9:06 pm
[...] at Palmpre-Hacks have figured out a way to install and run a WordPress blog of a Palm Pre phone by installing the [...]
September 11th, 2009 at 11:29 pm
This looks cool and all but Y would you want to run WP off a palm-pre?
What is the point of that?
From my point of view that just seems like a wast of time & you got way to much free time on your hands dude.
September 12th, 2009 at 5:54 am
[...] a detailed explanation on how to run your WordPress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]
September 12th, 2009 at 1:24 am
In the future, maybe blogs can run off super small devices like a Palm Pre and you could take your web servers with you. For example, I don't host my websites at my house because I can't oversee them if I am on vacation. If you could take your web servers with you, I could host my websites myself. Well, this is just the beginning. Yes, I do have a lot of free time on my hands as my primary job is to blog all day long, this is my job, it's better than flipping burgers for sure. No pun intended, just trying to be helpful!
September 12th, 2009 at 6:32 am
[...] a detailed explanation on how to run your WordPress blog on a Palm Pre. Palm is Linux based so it should be fairly easy for someone to get the hang of this given some [...]
September 15th, 2009 at 11:47 am
[...] kterým chci tenhle malý drahokam také vlastnit. Brácha mi poslal odkaz na blogpost o tom, jak nainstalovat a provozovat WordPress v telefonu Palm Pre. Že to je možné se dalo tušit díky tomu, na čem webOS funguje, ale stejně jsem zůstal [...]
September 21st, 2009 at 12:33 am
after step 23 whem i try to open my blog i got the following message
Your PHP installation appears to be missing the MySQL extension which is required by WordPress.
September 24th, 2009 at 3:15 am
Nice content, thanks for uploading.
I was also trying to install WordPress on my server, got the easiest way from eZdia's knowledge bucket, have a look http://www.ezdia.com/Installing_WordPress_on_yo…
September 25th, 2009 at 10:22 pm
[...] How to Install/Run A WordPress Blog on a Palm Pre! | Palm Pre Hacks Blog!. AKPC_IDS += "769,";Popularity: unrankedArtigos RelacionadosNova versão do SkyfireFotos noturnas: [...]
September 26th, 2009 at 7:14 am
[...] http://palmpre-hacks.com/palm-pre-hacks/how-to-installrun-a-wordpress-blog-on-a-palm-pre/ a few seconds ago from Twitter Tools [...]
October 9th, 2009 at 5:24 pm
same here
October 11th, 2009 at 2:00 pm
i was wrong the server is running i got:
root@castle:~$ /opt/bin/mysqladmin -u root -p version
Enter password:
/opt/bin/mysqladmin Ver 8.41 Distrib 4.1.22, for none-linux-gnueabi on arm
Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license
Server version 4.1.22
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /tmp/mysql.sock
Uptime: 52 min 40 sec
Threads: 1 Questions: 11 Slow queries: 0 Opens: 11 Flush tables: 1 Open tables: 2 Queries per second avg: 0.003
now i dont know why i have this:
Your PHP installation appears to be missing the MySQL extension which is required by WordPres
October 14th, 2009 at 10:24 am
I can't seem to get past bringing up the new blog on the browser for the first time like in step 14 it keeps telling me server time out
October 14th, 2009 at 10:36 am
I also am not able to ping anything accept my main domain… I am totally new at this and have worked through this perfectly till this point. I even worked through the password issue mentioned… Please help I want to make this work so I can do the gps web tracking… Thanks
October 16th, 2009 at 10:27 am
anybody know how to solve this when i try to install wordpress
“Your PHP installation appears to be missing the MySQL extension which is required by WordPres”
php.ini needs to be set up properly.something is missing here
October 17th, 2009 at 10:22 am
now its working i just installed the php-mysql package to have the missing extension.
October 17th, 2009 at 12:13 pm
I have exactly the same situation. Have you found a way to fix it?
October 17th, 2009 at 12:29 pm
Thanks! I just noticed this post and tried it out. It works now! Outstanding.
October 17th, 2009 at 10:51 pm
Make sure Lighttpd is running, if not, you will get that error.
October 19th, 2009 at 8:48 pm
Hey on step six, it says to change the server.port to 9999, but there is no server.port in the script. All i get is server.module….what do i do?
October 19th, 2009 at 10:10 pm
one easy way to check if lighttpd is running is to type in your browser: http://MyDynamicDNS.blogdns.com:9999/.
October 25th, 2009 at 11:41 am
do step 5 again
October 30th, 2009 at 6:56 pm
At step 23, I get this error message:
“Your PHP installation appears to be missing the MySQL extension which is required by WordPress.”
What did I miss?
Thanks…Neil
October 31st, 2009 at 5:48 pm
Great for the port 9999 error, it's because you are trying to run lighttpd while its running already, try killing the process first with killall lighttpd command.
November 1st, 2009 at 12:24 pm
just type “sudo ipkg-opt install php-mysql” and reboot the phone
November 2nd, 2009 at 9:30 am
Thanks, guys. php-mysql fixed the issue, and the phone speed has picked back up to normal.
…Neil
November 28th, 2009 at 4:36 am
I can't tell you how wonderful your instructions are. I have read all of them, from “how to hack pre into wifi rounter,” to “how to ssh into pre,” and “how to setup gps tracking on pre.” All of them are clearly written with detail step by step instruction. I'm awaiting for your next project. Keep up the good work!
November 29th, 2009 at 11:42 pm
Thanks a million for all of the wonderful guides. They are very well done and I appreciate all of the work that has gone into them. Here is a tip for anyone who has had the same problem I ran into on step 5 where the command:
sudo ipkg-opt install lighttpd php-fcgi
returns the error:
Failed to download lighttpd. Perhaps you need to run 'ipkg update'?
1. Download the file http://ipkg.nslu2-linux.org/feeds/optware/cs08q…
2. copy it to your pre's /tmp directory using SCP or cygwin
3. ssh into the pre and run the commands:
sudo ipkg-opt install php-fcgi
cd /tmp
sudo ipkg-opt install lighttpd_1.4.25-1_arm.ipk
rm /tmp/lighttpd_1.4.25-1_arm.ipk
This should get you ready for the next stages of step 5
Keep the tips coming!
December 9th, 2009 at 1:14 pm
Interesting thoughts well expressed.
For more jobs visit http://www.staffingpower.com
January 3rd, 2010 at 10:43 pm
[...] see this place How to Install/Run A WordPress Blog on a Palm Pre! | Palm Pre Hacks Blog! [...]
February 10th, 2010 at 5:46 am
Thanks for this very good technical information. I really appreciate this article. Many people will find it very useful.
February 26th, 2010 at 11:20 am
Awesome, you got it working!
Thank you for article this!
February 26th, 2010 at 2:58 pm
[...] just install it via this article… How to Install/Run A WordPress Blog on a Palm Pre! | Palm Pre Hacks Blog! i didn't need [...]
February 28th, 2010 at 4:27 am
Weenueglomo, http://www.webjam.com/breastactives, sadogreed, breast actives, IDORRIPSY
March 9th, 2010 at 2:31 pm
А как установить себе аватар без регистрации? А для сайта на друпале так сделать можно?
March 11th, 2010 at 9:54 am
Not sure if it really is me because of I still had never time to upgrading so i’m still utilising Opera 9 but My spouse and i noticed some type of strange code all over the web page . It says this together with lots of different different words right after it, such as Error: Impossible modify head tag … and the like. Its a bit unusual since for me my own internet site car-hire-alicante-airport and also the widely used sort as for example google.com and yahoo.com cause me never issues.
March 14th, 2010 at 10:00 am
Many thanks for the good information. I was pondering in case you could possibly point me in direction of some more recourses?.
March 29th, 2010 at 12:55 am
Thanks for this very good technical information.
April 5th, 2010 at 2:35 am
Do not use RegCure until you read this!
April 6th, 2010 at 5:51 am
Foster & Smith Litter Box Benches Super Mega with Silhouette for Cats in Cocoa CarpetLitter Box Benches Super Mega w/Silhouette by Foster & Smith. The bench that conceals your litter pan just got even better. Fits all our automatic litter boxes. Available in Color: Cocoa Carpet. Available in Door Type: Left..
April 22nd, 2010 at 10:02 pm
Thanks for this very good technical information.
April 22nd, 2010 at 10:06 pm
Awesome, you got it working!
Thank you for article this!
April 24th, 2010 at 5:30 pm
Thanks for this very good technical information.
May 23rd, 2010 at 10:39 pm
Has anyone noticed that the 8th step forms an emoticon. On a different tutorial it says to follow this one from step 5-8 and I could not find the 8th step because of the ) the
makes a smiley. Just wondering if anyone has noticed this.
July 13th, 2010 at 9:03 am
[...] install. Try reinstalling. If the preware version does not work try the CLI way. I always preffered this tutorial. Just follow steps 1 then [...]
July 13th, 2010 at 11:10 am
[...] not work try reinstalling. If the preware version does not work try the CLI way. I always preffered this tutorial. Just follow steps 1 then [...]
September 3rd, 2010 at 9:51 pm
Well expressed. Very informative article. Thanks for the tutorial. I learned a lot from you. Keep it up!
November 10th, 2010 at 3:04 am
Damn, certainly cool information. How will I find that subscription?
Jane Kripke
rf bug detectors
June 20th, 2011 at 10:37 am
[...] Of course, you can run Linux on Android too but it’s still too slow and at its infant stages unlike WebOS where you can slap on some Lighttpd and MySQL to run a mobile WordPress hosting platform. [...]