Labels
- news (101)
- Linux (72)
- tips (36)
- ubuntu (32)
- hardware (24)
- videos (24)
- howtos (21)
- kde (20)
- open source (20)
- solaris (18)
- solaris interview questions (18)
- external links (10)
- fedora (10)
- windows (10)
- debian (8)
- kernel (8)
- solaris interview questions and answers (8)
- MCSE Videos (6)
- commands (6)
- sun (6)
- linus torvalds (5)
- Sun Solaris 10 CBT (4)
- network administration (4)
- web design (4)
- solaris-express (3)
- backup (2)
- virtualization (1)
Guiness World Record Certificate in your name - Firefox 3
Labels: web browsers
OpenSUSE 11.0 released
Wine 1.0 - The first stable release of Wine after 15 years of development
After 15 long years of active development, Wine software which makes it possible to run native Windows applications, has reached it's milestone 1.0 version. What are the features of this new stable release of Wine you ask ? Well, one of the prerequisites of the version 1.0 release, I am told, was that it should be able to run Adobe Photoshop CS2 flawlessly in Linux. And that has been achieved. Check out if and how far your favorite Windows application works in Wine by visiting the Wine Application Database.
You can download the binary packages or the source at the WineHQ website.
How do astronauts go to bathroom in outer space
A NASA engineer answers one of the age-old questions every kid has: What happens when you go to the bathroom in outer space? A little insight into zero-gravity toilet design.
Labels: humor, outer space, video
Opera 9.50 web browser released
- Opera Link : For the very first time, all your bookmarks, speed dial and notes taken in Opera web browser will follow you around where ever you go. You can even access them from your mobile phone. The catch being you have to be using an Opera web browser. Opera provides space on their server to store your bookmarks and other settings which makes this possible.
- Quick Find : Opera keeps track of not only the web addresses you visit but also words from pages you have visited. So if you do not remember the web address but remember a word on the web page, typing it in the address bar will let you zero in on the exact web page.
- Better fraud protection.
- A sharper skin.
It’s faster, lighter and pushes us further out in front of other browsers, by blending the mobile and desktop worlds together in new and powerful ways.
Labels: news, web browsers
MySQL - Cheat Sheet
- mysqld - MySQL server daemon
- safe_mysqld - Server process monitor
- mysqlaccess - Tool for creating MySQL users
- mysqladmin - Utility for administering MySQL
- mysqldump - Tool for dumping the contents of a MySQL database. Useful for backing up a database from within the console.
- mysql - Command line interface to MySQL
- mysqlshow - List all MySQL database
- Mysql Administrator - This is a GUI tool which makes administering mysql database a painless task. Read more about it here.
INTEGER - A whole numberField Types specific to MySQL
VARCHAR(10) - Up to 10 characters.
CHAR(10) - Fixed number of characters
DATE - A date
DATETIME - Date and time
FLOAT - Floating point numbers
TEXT - Allows up to 65535 charactersCreate a database
DECIMAL(10,2) - Up to 10 digits before the point, 2 after.
$ mysqladmin --user=ravi --password=xxx create database addressdbUsing the database
$ mysql --user=ravi --password=xxxCreate a table
mysql> USE addressdb
mysql> CREATE TABLE p_addr (i INTEGER PRIMARY KEY,address TEXT,email VARCHAR(30),pincode DECIMAL(10),phone DECIMAL(15),website TEXT);Add a column called "name" to the table
mysql> ALTER TABLE p_addr ADD name VARCHAR(30);Inserting values into table
mysql> INSERT INTO p_addr VALUES (1,"My, present, address","ravi@localhost",681024,2122536, "http://linuxhelp.blogspot.com","Ravi");List the contents of the table
mysql> SELECT * FROM p_addr;Delete a row from the table
mysql> DELETE FROM p_addr WHERE i=1;Rename a column in the table from "address" to "home_address"
mysql> ALTER TABLE p_addr CHANGE address home_address INTEGER;Note: You cannot use this method to rename a column which is a primary key.
Change an existing record in the table
mysql> UPDATE p_addr SET name="Sumitra" WHERE i=2;Delete the table from the database
mysql> DROP TABLE p_addr;List the databases
$ mysqlshow --user=ravi --password=xxxList the tables in the database "addressdb"
+-----------+
| Databases |
+-----------+
| addressdb |
| myblog |
| mysql |
| test |
+-----------+
$ mysqlshow --user=ravi --password=xxx addressdb
Database: addressdb
+---------+
| Tables |
+---------+
| p_addr |
| mytble |
| phonebk |
+---------+
Labels: MySql