博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SUSE11SP2批量安装脚本
阅读量:6074 次
发布时间:2019-06-20

本文共 2910 字,大约阅读时间需要 9 分钟。

1.第一台用光盘把一台安装好(或者自己的笔记本有一个SUSE接到网络里)

2.将ISO上传到root目录下
3.将自己autoinst.xml或者用现成的autoinst.xml 放到root目录(/root目录下本来有一个)
4.将一下脚本susepxe.sh上传到root目录
5.修改一下脚本里的网段参数
6.再执行sh susepxe.sh, 其他机器网络启动即可

 
#!/bin/bash
# prepare: 
#        a  server installed suse 11 sp2 
#        ISO of suse 
#        autoinst.xml
#        this script
# usage:
#        modify this script's line between 18 ~ 26
#        make this parameter correct
# description:
#        this server is a dhcp(PXE) server and tftp server and vsftp srever
#        dhcp use local_eth as dhcp enthernet interface 
#        other machines in the broadcast  using pxe boot  will use the autoinstfile and install suse paralel
#        if you want paralel and automation ,you can modify the xml .
#        
#        
 
isofile='/root/SLES-11-SP2-DVD-x86_64-GM-DVD1.iso'
autoxmlfilename='my_autoinst.xml'
 
autoxml="/root/${autoxmlfilename}"
 
local_eth='br0'
local_ip='10.5.101.17'
local_netmask='255.255.255.0'
local_network='10.5.101.0'
 
local_range1='10.5.101.150'
local_range2='10.5.101.200'
 
 
mount_path="/media"
 
 
if [ ! -f $isofile ] ;then
    echo $isofile is not exist!
fi
if [ ! -f $autoxml ] ;then
    echo $autoxml is not exist!
fi
backup(){
    local file1=$1
    [ ! -f ${file1}.bak ] && cp  -rf ${file1}{,.bak}
}
restore(){
    local file1=$1
    [ -f ${file1}.bak ] && cp -rf ${file1}{.bak,}
}
# mount iso
install(){
mkdir -p $mount_path
mount -t iso9660 -o loop  $isofile  $mount_path
cd ${mount_path}/suse/x86_64
 
#install rpm
rpm -ivh dhcp*
rpm -ivh  syslinux*
rpm -ivh tftp*
rpm -ivh vsftpd*
#restore and bakcup
 
#modify dhcp
`restore /etc/dhcpd.conf`
`backup /etc/dhcpd.conf`
cat >> /etc/dhcpd.conf << EOF
default-lease-time 14400;
ddns-update-style none;
next-server $local_ip;  
 
filename "pxelinux.0";
subnet $local_network netmask $local_netmask {
  range $local_range1  $local_range2;
  default-lease-time 14400;
  max-lease-time 172800;
}
EOF
 
`restore  /etc/sysconfig/dhcpd`
`backup /etc/sysconfig/dhcpd`
sed -i "s/DHCPD_INTERFACE=\"\"/DHCPD_INTERFACE=\"${local_eth}\"/" /etc/sysconfig/dhcpd
 
service dhcpd restart
 
 
#tftp
`restore  /etc/xinetd.d/tftp`
`backup  /etc/xinetd.d/tftp`
perl -p -i -e  "s/yes/no/ if /disable/ " /etc/xinetd.d/tftp
service xinetd restart
 
# prepare tftp file
mkdir -p /tftpboot/  
mkdir -p /tftpboot/pxelinux.cfg  
cp -rf ${mount_path}/boot/x86_64/loader/initrd /tftpboot/ 
cp -rf ${mount_path}/boot/x86_64/loader/linux /tftpboot/
cp -rf /usr/share/syslinux/pxelinux.0  /tftpboot/  
 
touch /tftpboot/pxelinux.cfg/default
 > /tftpboot/pxelinux.cfg/default
cat >> /tftpboot/pxelinux.cfg/default <<EOF
default linux
lable linux
kernel linux
append initrd=initrd autoyast=ftp://${local_ip}/${autoxmlfilename} install=ftp://${local_ip}/suse/ splash=verbose showopts
EOF
 
mkdir -p /srv/ftp/
cp -rf $autoxml /srv/ftp/
cd /srv/ftp
 
mkdir suse -p
umount   $mount_path
mount -t iso9660 -o loop  $isofile /srv/ftp/suse/
service vsftpd restart   
 
}
uninstall(){
service vsftpd stop
service dhcpd stop
 
}
 
install

本文转自 guowang327 51CTO博客,原文链接:http://blog.51cto.com/guowang327/1957116,如需转载请自行联系原作者

你可能感兴趣的文章
服务器电脑名称改后,需要修改那些内容。
查看>>
第186天:js深入理解构造函数和原型对象
查看>>
页面自动刷新
查看>>
职业规划
查看>>
ansible小结
查看>>
银联支付Java开发
查看>>
最小编辑距离
查看>>
++a和--a以及a++和a--
查看>>
ios--控件--自定义封装一个控件
查看>>
第一章 Oracle10g数据库新特性
查看>>
linux之DNS服务
查看>>
仿射变换详解 warpAffine
查看>>
字符串的属性和方法的调用
查看>>
Genymotion虚拟机启动时get no IP address的解决方法汇总
查看>>
HTML5之tabindex属性
查看>>
分页查询和redis
查看>>
windwos下开发的php上传至linux服务器下需要注意些什么问题?
查看>>
排序算法总结(四)快速排序【QUICK SORT】
查看>>
adb安装启动Touch校正软件
查看>>
内存泄漏的分析?
查看>>