Pages

Google Ads

Friday, November 14, 2008

Ubuntu Theme like Windows Vista, but much better...

Would like to have your Ubuntu ( a Linux System) running a Theme like Windows Vista?

If yes, click on the link below:

http://xibex.blogspot.com/2008/08/extra-ubuntu-themes-with-emerald-theme.html

Some good terminal commands to MySQL

Some good terminal commands to MySQL are:

Type on terminal to:

Change root password:
/usr/bin/mysqladmin -u root password "new_password"

Log without password
# mysql

If it output:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

That shows that mysql does not allow access as root without password.

If you log without a password it is good to put a password, use the same command to change root password.

Log with root user
# mysql -u root -p

Show databases
# show databases;

Choose a database
# use name_of_your_database;

Show tables;
# show tables;

Show MySQL users;
# select * from mysql.user;

Run a script
# source your_script.sql;

Give all privilege to a user
# grant all privileges on *.* to 'user'@localhost identified by 'your_password' WITH GRANT OPTION;

# flush privileges;

More infos visit http://www.mysql.com/

A good step by step Ubuntu 8.10 tutorial

Below there is a link to a step by step tutorial about installing Ubuntu 8.10, the author called it as "The Perfect Desktop - Ubuntu 8.10 (Intrepid Ibex)".

I think that's a good tutorial for someone who is starting to use Ubuntu and you can use it to install Ubuntu 8.10 without having problems, of course you do not have to install all the programs he likes but I think that a lot of programs he likes is good to have on a linux desktop.

Have fun!!!

http://howtoforge.com/the-perfect-desktop-ubuntu-8.10

Quais são os 10 profissionais de TI mais procurados pelas empresas

Para os que estão pensando em mudar de emprego ou área ou até mesmo para quem apenas deseja saber quais são os 10 profissionais de TI mais procurados pelas empresas veja o link abaixo:


http://info.abril.com.br/professional/carreira/quais-sao-os-10-profissionais.shtml

Thursday, November 13, 2008

How to convert DivX/XviD/MPEG to DVD with menu using manDVD

Hi guys,

ManDVD is a tool for generating video DVDs and it is really good.

If you want to know about "How to convert DivX/XviD/MPEG to DVD with menu using manDVD" please read the blog below.

http://www.dvd-guides.com/content/view/208/59/

Convert .rpm files to .deb files

Hello guys,

Not everytime we will find programs .deb, so if it happened to you and they have .rpm you can convert it to .deb.

It is easy and it works.

Install Alien ( The program that will convert to deb)
$ sudo apt-get install alien

Convert to .deb file:
$ sudo alien --scripts program_name.rpm

Install .deb file:
$ sudo dpkg -i <.deb file generated>