openstack安装系列之一:操作系统自动安装篇

简介:

openstack部署中操作系统安装是个问题,虽然有很多解决方案,但是都要安装一些软件,我试验一些基于操作系统的方法(注意操作版本),步骤:

1、安装配置DHCP;

2、安装配置TFTP与syslinux中的模块

3、PXE启动与安装

下面是详细内容:

 cat dhcpd.conf 
#
# DHCP Server Configuration file.
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample  
#
ddns-update-style interim;
ignore client-updates;
allow booting;
allow bootp;
subnet 10.12.28.0 netmask 255.255.252.0 {

# --- default gateway
 deny unknown-clients;
 option routers   10.12.28.1;
 option subnet-mask  255.255.252.0;
 option nis-domain  "test-iaas.org";
 option domain-name  "test-iaas.org";
 option domain-name-servers 10.12.5.134;
 option time-offset  -18000; # Eastern Standard Time
 option ntp-servers  10.12.28.4;
 range dynamic-bootp 10.12.29.6 10.12.29.160;
 default-lease-time 21600;
 max-lease-time 43200;
 #pxe install part
 next-server 10.12.5.134;
 filename "/linux58/pxelinux.0";
 # we want the nameserver to appear at a fixed address
 host s29dot7 { next-server 10.12.5.134; hardware ethernet 00:25:90:2c:9f:40; fixed-address 10.12.29.7; }
 host s29dot160 { next-server 10.12.5.134; hardware ethernet 00:25:90:2c:9f:44; fixed-address 10.12.29.160; }
}

 cat /tftpboot/boot.msg

 
splash.lss

 -  Press the 01<ENTER>07 key to begin the installation process.
 

 cat /tftpboot/pxelinux.cfg/default 
#default vesamenu.c32
default linux
prompt 1
timeout 6000

display boot.msg

menu background splash.jpg
menu title Welcome to linux
menu color border 0 #ffffffff #00000000
menu color sel 7 #ffffffff #ff000000
menu color title 0 #ffffffff #00000000
menu color tabmsg 0 #ffffffff #00000000
menu color unsel 0 #ffffffff #00000000
menu color hotsel 0 #ff000000 #ffffffff
menu color hotkey 7 #ffffffff #ff000000
menu color scrollbar 0 #ffffffff #00000000

label linux
  menu label ^Install or upgrade an existing system
  menu default
  kernel vmlinuz
  append initrd=initrd.img
label vesa
  menu label Install system with ^basic video driver
  kernel vmlinuz
  append initrd=initrd.img xdriver=vesa nomodeset
label rescue
  menu label ^Rescue installed system
  kernel vmlinuz
  append initrd=initrd.img rescue
label local
  menu label Boot from ^local drive
  localboot 0xffff
label memtest86
  menu label ^Memory test
  kernel memtest
  append -

ll /tftpboot/vmlinuz /tftpboot/initrd.img /tftpboot/pxelinux.0
-rw-r--r-- 1 root root 30754349 06-07 16:49 /tftpboot/initrd.img
-rw-r--r-- 1 root root    26828 06-07 17:05 /tftpboot/pxelinux.0
-rwxr-xr-x 1 root root  3938288 06-07 16:49 /tftpboot/vmlinuz










本文转自 jxwpx 51CTO博客,原文链接:http://blog.51cto.com/jxwpx/895263,如需转载请自行联系原作者
目录
相关文章
|
3月前
|
存储 网络协议 Linux
如何安装OpenStack?
【8月更文挑战第21天】
491 1
|
3月前
|
关系型数据库 MySQL 数据库
【Mac os系统】安装MySQL数据库
本文详细介绍了在Mac OS系统上安装MySQL数据库的步骤,包括下载、安装、配置环境变量、启动服务、授权设置以及解决常见问题,并提供了一些常用的MySQL命令。
196 0
【Mac os系统】安装MySQL数据库
|
4月前
|
Linux 虚拟化 数据安全/隐私保护
部署05-VMwareWorkstation中安装CentOS7 Linux操作系统, VMware部署CentOS系统第一步,下载Linux系统,/不要忘, CentOS -7-x86_64-DVD
部署05-VMwareWorkstation中安装CentOS7 Linux操作系统, VMware部署CentOS系统第一步,下载Linux系统,/不要忘, CentOS -7-x86_64-DVD
|
1月前
|
应用服务中间件 Linux nginx
Mac os 安装 nginx 教程(success)
这篇文章是关于如何在Mac OS系统上使用Homebrew安装nginx及其依赖,并解决安装过程中可能出现的权限问题。
78 0
Mac os 安装 nginx 教程(success)
|
2月前
|
Windows
Windows操作系统部署安装Kerberos客户端
详细介绍了在Windows操作系统上部署安装Kerberos客户端的完整过程,包括下载安装包、安装步骤、自定义安装路径、修改环境变量、配置hosts文件和Kerberos配置文件,以及安装后的验证步骤。
354 3
Windows操作系统部署安装Kerberos客户端
|
2月前
|
Ubuntu 网络安全 开发工具
Ubuntu19.04的安装过程详解以及操作系统初始化配置
本文详细介绍了Ubuntu 19.04操作系统的安装过程、初始化配置、网络设置、软件源配置、SSH远程登录以及终端显示设置。
87 1
Ubuntu19.04的安装过程详解以及操作系统初始化配置
|
3月前
|
编解码 Linux 虚拟化
超详细VMware虚拟机安装Win10操作系统过程图解
这篇文章提供了一个详细的VMware虚拟机安装Windows 10操作系统的图解教程,包括了从创建虚拟机到安装操作系统的全过程,以及安装后的一些基本设置,如屏幕分辨率调整等。作者还提到了后续会分享关于磁盘分区的创建过程。
超详细VMware虚拟机安装Win10操作系统过程图解
|
4月前
|
IDE Java 开发工具
如何在Windows操作系统上安装PyCharm?
【7月更文挑战第5天】如何在Windows操作系统上安装PyCharm?
195 59
|
3月前
|
Ubuntu 安全 iOS开发
Kylin操作系统安装及使用指南
Kylin操作系统安装及使用指南
|
3月前
|
Linux Docker 容器
在CentOS操作系统上使用yum安装/使用/卸载Docker容器引擎
在CentOS操作系统上安装、配置、使用和卸载Docker容器引擎的详细步骤,包括配置Docker镜像加速的方法。
332 0