Ubuntu 9.10 for Web Developers
# LAMP (Linux, Apache, MySQL and PHP)
sudo apt-get install apache2 mysql-server php5 php5-mysql
# phpMyAdmin, choose apache
sudo apt-get install phpmyadmin
# PostgreSQL
sudo apt-get install postgresql php5-pgsql pgadmin3
# Opera
sudo apt-get install libqt3-mt
wget -c "http://get3.opera.com/pub/opera/linux/1001/final/en/i386/opera_10.01.4682.gcc4.qt3_i386.deb"
sudo dpkg -i opera_10.01.4682.gcc4.qt3_i386.deb
Login problems using pgAdminIII and PostgreSQL:
http://www.ubuntugeek.com/howto-setup-database-server-with-postgresql-and-pgadmin3.html

The second day I’m using OpenSolaris 2009.06
# Install Apache, MySQL and PHP on OpenSolaris
pkg install amp
pkg install webstack-ui
# Read Ext2/Ext3 Filesystem
wget -c "http://www.belenix.org/distributions/belenix_site/binfiles/FSWpart.tar.gz"
wget -c "http://www.belenix.org/distributions/belenix_site/binfiles/FSWfsmisc.tar.gz"
gzip -d FSWpart.tar.gz | tar xvf -
gzip -d FSWfsmisc.tar.gz | tar xvf -
pkgadd -d . FSWpart
pkgadd -d . FSWfsmisc
# Mini HOWTO example
prtpart # LIST Devices
prtpart $DEVICE -ldevs # List parts of the device
mount -F ext2fs /dev/dsk/c12t0d0p3 /root/linux
umount /root/linux
# Recursive grep (like grep -R on Gnu/Linux)
find . -type f -exec grep "something" {} \;

OpenSolaris 2009.06 on Toshiba Satellite u205
I have a little time using Debian Squeeze on my Notebook today i decide to test OpenSolaris 2009.06
- Wireless Works Fine 
- Some buttons no work (browser/music/play/stop/prev/next) 
- To lisen mp3 files, I need to register on fluendo. 
- To enable Flash on Firefox only download from adobe and move libflashplayer.so to /usr/lib/firefox/plugins
Screens:


Now I need to read [ http://dlc.sun.com/osol/docs/content/2009.06/getstart/ ]

Autoclick Opera Userscript
Autoclick code:
if (typeof e == 'object') {
if (typeof e.click != 'undefined') {
e.click();
return false;
} else if (document.createEvent) {
var evObj = document.createEvent('MouseEvents');
evObj.initEvent('click',true,true);
e.dispatchEvent(evObj);
return false;
}
else if (document.createEventObject) {
e.fireEvent('onclick');
return false;
}
else {
e.click();
return false;
}
}
Wake Up Script With Problems

Remember : I’m not sleeping, I’m hibernating
Recent Comments