| 
					| Maxs | Дата: Пятница, 22.11.2013, 11:42 | Сообщение # 1 |  | Admin Группа: Администраторы Сообщений: 76 Статус: Offline | Installing LAMP onto the pcduino was extremely easy.  I now have it up and running with
 phpmyadmin and ssh so I can remotely connect.  My pages are consisting
 mostly of client side processing, such as jquery, so I can't say that I
 can test, at least at the moment, any heavy pages, but it's returning my
 php pages extremely quickly.  I'm very excited and hopeful for this
 device.
 
 The arduino part is what I think will be challenging, but once I get my head around that part, I'm going to be excited I think.
 
 I installed the following items from apt (remember to do an apt-get update first)
 
 Code:
 sudo apt-get update
 sudo apt-get install lamp-server^  -- for all things lamp
 
 phpmyadmin  -- I had to run the following commands to get phpmyadmin to work
 properly as the phpmyadmin configuration didn't seem to get included
 properly with apache2.
 
 Code:
 sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
 sudo service apache2 reload
 
 ssh  -- for remote access
 
 nano  -- for file editing
 
 htop  -- for system resource monitoring
 
 php-apc -- thanks to the recommendation below by Edward M. Goldberg, this helps
 with allowing PHP to cache, which helps with performance (note my
 performance testing results below did NOT include this so I might need
 to run it again to confirm performance increase)
 
 Code:
 sudo apt-get install ssh nano htop php-apc
 
 I really don't have a benchmark other than my ubuntu server at home, but
 the pages I'm working with are loading very quickly.  It will be
 interesting to see your results.
 |  |  |  |  | 
| 
					| Maxs | Дата: Среда, 07.05.2014, 23:33 | Сообщение # 2 |  | Admin Группа: Администраторы Сообщений: 76 Статус: Offline | password: ubuntu |  |  |  |  |