bookmark_borderDIY: Home UBUNTU NAS Server

Back in 2003, I used to connect my computer on the my old 32′ TV, those huge and heavy TVs, to watch stuff from the internet, at that time, eMule was ruling the p2p community (can’t talk about USENET right? :} ). Then in 2008 I decided to build a better HTPC (Home Theater PC), a full dedicated computer connected to my TV, with good MotherBoard/VGA/SoundBoard, well, a good computer, with gaming capacities. It was good while it lasted, but you know, it was huge black box below my TV, bit noisy, but it did the job.

Continue reading “DIY: Home UBUNTU NAS Server”

bookmark_borderSolving 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! 🙂

bookmark_borderRunning MAME games on Ubuntu

How many of us, when young spent so much money playing in arcade machines? How much time have you spent on that old arcade house playing that game, just to watch the end of that hard game, or to be in first on the Hall of Fame? Don’t you miss playing Metal Slug, Marvel vs Capcom, The King of Fighters, Dungeons & Dragons, Street Fighter, Cadillacs and Dinosaurs and many other games?

Continue reading “Running MAME games on Ubuntu”