符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
使用PXE+Dhcp+Apache+KickStart进行无人值守安装RHEL 5.9
成都创新互联公司长期为上千余家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为通渭企业提供专业的成都网站设计、成都网站制作,通渭网站改版等技术服务。拥有10多年丰富建站经验和众多成功案例,为您定制开发。
一、yum需要配置好
vim /root/yumresoure.sh
#!/bin/bash
[ -d /data/yum/ ] || mkdir -p /data/yum/
mv /etc/yum.repos.d/* /data/yum/
rm -rf /etc/yum.repos.d/*
echo [rhel-data] >/etc/yum.repos.d/rhel-source.repo
echo name=RHEL5 data >> /etc/yum.repos.d/rhel-source.repo
echo baseurl=file:///media/Server >>/etc/yum.repos.d/rhel-source.repo
echo enabled=1 >> /etc/yum.repos.d/rhel-source.repo
echo gpgcheck=0 >> /etc/yum.repos.d/rhel-source.repo
vim /root/yum.sh
#!/bin/bash
umount /dev/cdrom
mount /dev/cdrom /media
bash /root/yumresoure.sh
bash /root/yum.sh
二、安装kickstart服务
yum install -y system-config-kickstart.noarch
system-config-kickstart
三、安装httpd服务
yum install -y httpd
mkdir /var/www/html/rhel5.9
cp -r /media/* /var/www/html/rhel5.9/
cp /root/ks.cfg /var/www/html/rhel5.9/
vim /var/www/html/rhel5.9/ks.cfg
#platform=x86, AMD64, 或 Intel EM64T
# System authorization information
auth --useshadow --enablemd5
key --skip
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Use text mode install
text
# Firewall configuration
firewall --disabled
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang zh_CN
# Installation logging level
logging --level=info
# Use network installation
url --url=http://10.10.10.30/rhel5.9
# Network information
network --bootproto=dhcp --device=eth0 --onboot=on
# Reboot after installation
reboot
#Root password
rootpw --iscrypted $1$sa5Wf6oW$lEyPJJwDZ/zAJ2UK83Elp/
# SELinux configuration
selinux --disabled
# System timezone
timezone --isUtc Asia/Shanghai
# Install OS instead of upgrade
install
# X Window System configuration information
xconfig --defaultdesktop=GNOME --depth=8 --resolution=800x600
# Disk partitioning information
part /boot --bytes-per-inode=4096 --fstype="ext3" --size=100
part swap --bytes-per-inode=4096 --fstype="swap" --size=1024
part / --bytes-per-inode=4096 --fstype="ext3" --grow --size=1
%packages
@dialup
@base
@gnome-desktop
@system-tools
@development-tools
@kde-software-development
@x-software-development
@gnome-software-development
@base-x
@admin-tools
@development-libs
@graphical-internet
@chinese-support
@legacy-software-development
@legacy-software-support
@java-development
@text-internet
@java
@editors
@ruby
四、安装xinetd和tftp服务
vim /etc/xinetd.d/tftp
yum install -y tftp xinetd
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
disable = no ####默认是yes,需修改为no
per_source = 11
cps = 100 2
flags = IPv4
}
cp /usr/share/syslinux/pxelinux.0 /tftpboot/
cp /media/p_w_picpaths/pxeboot/initrd.img /tftpboot/
cp /media/p_w_picpaths/pxeboot/vmlinuz /tftpboot/
cp /media/isolinux/*.msg /tftpboot/
mkdir pxelinux.cfg
cp /media/isolinux/isolinux.cfg /tftpboot/pxelinux.cfg/isolinux.cfg
mv /tftpboot/pxelinux.cfg/isolinux.cfg /tftpboot/pxelinux.cfg/default
vim /tftpboot/pxelinux.cfg/default
default linux
prompt 1
timeout 60
display boot.msg
F1 boot.msg
F2 options.msg
F3 general.msg
F4 param.msg
F5 rescue.msg
label linux
kernel vmlinuz
append initrd=initrd.img ks=http://10.10.10.30/rhel5.9/ks.cfg
五、安装dhcpd服务
yum install -y dhcpd
cp /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample /etc/dhcpd.conf
vim /etc/dhcpd.conf
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
dDNS-update-style interim;
ignore client-updates;
next-server 10.10.10.30;
filename "/pxelinux.0";
subnet 10.10.10.0 netmask 255.255.255.0 {
# --- default gateway
option routers 10.10.10.30;
option subnet-mask 255.255.255.0;
# option nis-domain "domain.org";
# option domain-name "domain.org";
# option domain-name-servers 192.168.1.1;
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;
range dynamic-bootp 10.10.10.200 10.10.10.240;
default-lease-time 21600;
max-lease-time 43200;
# we want the nameserver to appear at a fixed address
# host ns {
# next-server marvin.redhat.com;
# hardware ethernet 12:34:56:78:AB:CD;
# fixed-address 207.175.42.254;
# }
}
六、重启各项服务
/etc/init.d/xinetd restart
/etc/init.d/httpd restart
/etc/init.d/dhcpd restart