おー、インストール完了したぞ

Welcome to CentOS




          +----------------------+ Complete +-----------------------+
          |                                                         |
          | Congratulations, your CentOS installation is complete.  |
          |                                                         |
          | Remove any media used during the installation process   |
          | and press  to reboot your system.                |
          |                                                         |
          |                                                         |
          |                       +--------+                        |
          |                       | Reboot |                        |
          |                       +--------+                        |
          |                                                         |
          |                                                         |
          +---------------------------------------------------------+




                                to reboot

構成はこんな感じ

[prompt]# cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 15
model name      : Intel(R) Pentium(R) Dual  CPU  E2180  @ 2.00GHz
stepping        : 13
cpu MHz         : 1994.999
cache size      : 1024 KB
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 10
wp              : yes
flags           : fpu tsc msr pae mce cx8 apic mca cmov pat pse36 clflush dts acpi 
mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc up pni monitor ds_cpl est tm2 
cx16 xtpr lahf_lm
bogomips        : 4989.75

以上cpuinfo
kickstartの設定はこんな感じ

# Kickstart file automatically generated by anaconda.

install
url --url ftp://ftp.riken.go.jp//Linux/centos/5.0/os/i386
lang en_US.UTF-8
network --device eth0 --bootproto static --ip xxx.xxx.xxx.xxx
 --netmask 255.255.255.0 --gateway xxx.xxx.xxx.xxx
 --nameserver xx.xx.xx.xx --hostname host.domain
rootpw --iscrypted ***************
firewall --enabled --port=22:tcp
authconfig --enableshadow --enablemd5
selinux --enforcing
timezone --utc Asia/Tokyo
bootloader --location=mbr --driveorder=xvda --append="console=xvc0"
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
#clearpart --linux --drives=xvda
#part /boot --fstype ext3 --size=100 --ondisk=xvda
#part pv.6 --size=0 --grow --ondisk=xvda
#volgroup VolGroup00 --pesize=32768 pv.6
#logvol swap --fstype swap --name=LogVol01 --vgname=VolGroup00 --size=784 --grow --maxsize=1568
#logvol / --fstype ext3 --name=LogVol00 --vgname=VolGroup00 --size=1024 --grow

%packages
@admin-tools
@base
@core
@development-libs
@development-tools
@editors
@ftp-server
@graphics
@java
@java-development
@legacy-software-development
@legacy-software-support
@mail-server
@mysql
@network-server
@ruby
@server-cfg
@sql-server
@system-tools
@text-internet
@web-server
@x-software-development