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 Configurator application, |
# yum install system-config-kickstart -y |
# system-config-kickstart |
Image 1: In Basic Configurator, select Default Language, Keyboard type, Time Zone, Root Password and more options as below, |
Monday, April 30, 2012
Linux Kickstart File Generator
MySQL – CREATE TABLE examples
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 sec)
id INT,
data VARCHAR(100)
);
Query OK, 0 rows affected (0.02 sec)
Subscribe to:
Posts (Atom)