Monday, April 30, 2012

Linux Kickstart File Generator

0 comments
The Linux kickstart file is a simple text file, containing a list of items, each identified by a keyword. You can create it by using the Kickstart Configurator application, or writing it from scratch. Linux RHEL / CentOS / Fedora installation program also creates a sample kickstart file based on the options that you selected during installation. It is written to the file /root/anaconda-ks.cfg. To install  Linux Kickstart...
Read more...

MySQL – CREATE TABLE examples

0 comments
A very basic CREATE TABLE statement which should work in any SQL database: mysql> CREATE TABLE table1 (          id INT,          data VARCHAR(100)        ); Query OK, 0 rows affected (0.02 s...
Read more...