if you think to have a frozen keyboard on kubuntu, verify if its not an Accessibility configuration that slow down keyring
test : let finger on a key for 3sec : did it write something ?
If yes, manage accessibility and reset to defaults, to remove slowdown keyring
KDE frozen keyboard : could be accessibility slow down key
January 26, 2008Skype install – Ubuntu 7.04
December 9, 2007goto
http://www.skype.com/intl/en/download/skype/linux/
download the one for ubuntu feisty 7.04,
called skype-debian_1.4.0.99-1_i386.deb
download will ask you to store the file, or open with gdebi-gtk (package installer), choose package installer.
When install done, skype icon is in your Internet startfolder, start it and use your existing skype id/pass or create a new.
Mysql stuff on ubuntu…
December 9, 2007Getting started with MySQL is really easy. First you want to install the mysql server. Then you can start the server with this command:
Code:
sudo /etc/init.d/mysql start
Then, because intially the root user has no password, we want to set the password like this:
Code:
mysqladmin -u root password myPassword
You can now login to the mysql server with this:
Code:
mysql -u root -p
You’ll need to type in the password that you entered earlier.
Best is also to create another user, instead of running like root everytime…
http://www.mysql.se/doc/refman/5.0/en/adding-users.html
get some LAMP
December 9, 2007Apache2 + PHP4 + MySQL4:
sudo apt-get install apache2 php4 mysql-client mysql-server phpmyadmin libapache2-mod-php4 libapache2-mod-auth-mysql php4-mysql
Apache2 + PHP5 + MySQL4:
sudo apt-get install apache2 php5 mysql-client mysql-server phpmyadmin libapache2-mod-php5 libapache2-mod-auth-mysql php5-mysql
Apache2 + PHP5 + MySQL5:
sudo apt-get install apache2 php5 mysql-client-5.0 mysql-server-5.0 phpmyadmin libapache2-mod-php5 libapache2-mod-auth-mysql php5-mysql php-pear php5-gd php5-odbc
Extras:
sudo apt-get install php-pear php5-gd php5-odbc php5-xmlrpc php5-xsl php5-imap
Reboot or start Apache/MySQL this way:
sudo /etc/init.d/apache2 start
sudo /etc/init.d/mysql start
Open phpmyadmin in your browser:
http://localhost/phpmyadmin/
Log into phpmyadmin:
Name: root
Password: [blank]
phpmyadmin designer
September 25, 2007Installation du module phpmyadmin – designer
cf http://192.168.0.100/phpmyadmin/Documentation.html#linked-tables
A : Creation de la db : phpmyadmin
B : Insertion des tables necessaire /script/
C : Configuration du fichier de config de phpmyadmin : /etc/phpmyadmin/config.inc.php OU dans le dossier de phpmyadmin : Enlever les commentaires pour les tables ajouter, et pointer vers table phpmyadmin<br>
VERIFIER : Parfois, Ajout a la main dans config.inc.php de la conf pour coords
$cfg['Servers'][$i]['designer_coords'] = ‘pma_designer_coords’;// table to store SQL history
VERIFIER aussi si la db est la
Posted by subdubfkr