Archive for June, 2009

10A on a .7 graphite -> ElectronicsLab.org

Hi, me and some friends from university, we just started a new blog called electronicslab.org where we will add some cool things we do over the weekends and holidays, also telling our discoveries and learning’s. Down, you can watch a short but really cool video (at least was cool making it), were we connected a 0.7 graphite to a power source and made 10A go through it!

Don’t forget, add www.electronicslab.org to your rss reader and get ready for some cool stuff :)

Share/Save/Bookmark

Solving problemas with PhPMyadmin on Ubuntu

You know, everytime you want to install LAMP + phpmyadmin on Ubuntu, you can simply write on terminal:

sudo apt-get install apache2 mysql-server-5.0 php5 php5-mysql phpmyadmin

Ok, you are ready to go, but the only problem is that you can’t find the phpmyadmin folder when accessing http://localhost/ you can’t even see the folder at /var/www/ . So what you should do is:

sudo ln -sf /usr/share/phpmyadmin/ /var/www/phpmyadmin

It will link the phpmyadmin folder from /usr/share/phpmyadmin/ to /var/www/phpmyadmin
now try going to http://localhost/phpmyadmin and you are good to go! :)

Share/Save/Bookmark