博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Openstack-make-centos-image
阅读量:6636 次
发布时间:2019-06-25

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

煮酒品茶:OpenStack制作CentOS的镜像视频

1、建立虚拟机(硬盘镜像选对)

2、在虚拟机上做一些云的要求(有脚本)

3、上传镜像

4、测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# add the EPEL repo and update
rpm -Uvh http:
//download
.fedoraproject.org
/pub/epel/6/x86_64/epel-release-6-8
.noarch.rpm
yum -y update
# install cloud-init
yum -y 
install 
cloud-init
yum -y 
install 
rsync
# add the ec2-user (default for cloud-init)
adduser ec2-user
mkdir 
/home/ec2-user/
.
ssh
/
chown 
-R ec2-user.ec2-user 
/home/ec2-user/
.
ssh
# patch up groups
sed 
-i 
'/^wheel:/ s/$/ec2-user/' 
/etc/group
# fix up sudoers
sed 
-i 
'/Defaults    requiretty/d' 
/etc/sudoers
sed 
-i 
'/## Same thing without a password/{n;d}' 
/etc/sudoers
sed 
-i '/
# Same thing without a password/a \
%wheel   ALL=(ALL)   NOPASSWD: ALL' 
/etc/sudoers
# hack up sshd_config
sed 
-i 
's/PasswordAuthentication yes/PasswordAuthentication no/g' 
/etc/ssh/sshd_config
# clean up the network interface stuff
rm 
/etc/udev/rules
.d
/70-persistent-net
.rules
sed 
-i 
'/HWADDR/d' 
/etc/sysconfig/network-scripts/ifcfg-eth0
sed 
-i 
'/UUID/d' 
/etc/sysconfig/network-scripts/ifcfg-eth0
# graft up grub
sed 
-i 
's/timeout=5/timeout=1/g' 
/boot/grub/menu
.lst
sed 
-i '
/hiddenmenu/a 
\
serial –unit=0 –speed=115200 \
terminal –timeout=10 console serial' 
/boot/grub/menu
.lst
sed 
-i 
'/^\skernel/ s/$/ console=tty0 console=ttyS0,115200n8/' 
/boot/grub/menu
.lst
# wipe the passwords
passwd 
-l root
passwd 
-l ec2-user
# say something cute in /etc/motd
echo 
"CentOS image built using BlueChipTek's OpenStack guide." 
>> 
/etc/motd
echo 
"" 
>> 
/etc/motd
echo 
"More guides on OpenStack are at http://openstack.bluechiptek.com/" 
>> 
/etc/motd
echo 
"" 
>> 
/etc/motd
echo 
"@StackGeek" 
>> 
/etc/motd
# notify we're halting
echo 
"Halting instance in 5 seconds!"
sleep 
5
# halt the instance
halt
本文转自 煮酒品茶 51CTO博客,原文链接:http://blog.51cto.com/cwtea/1357349,如需转载请自行联系原作者
你可能感兴趣的文章
or ||
查看>>
编辑一次性计划任务
查看>>
MAC下的mysql忘记密码该怎么办??
查看>>
matlab练习程序(立体相关块匹配)
查看>>
DOS中的CD命令详解
查看>>
你应该知道的jQuery技巧
查看>>
消息处理之performSelector
查看>>
hihoCoder 1174 拓扑排序·一
查看>>
Struts2中防止表单重复提交,global-results定义全局结果处理
查看>>
汇编语言第一章基础知识
查看>>
Java 合并两个有序链表
查看>>
ipv6到ipv4隧道6to4(GNS3)
查看>>
NetBeans数据库笔记---三层架构
查看>>
iOS获取设备型号和App版本号等信息(OC+Swift)
查看>>
纯CSS3鼠标滑过按钮动画过滤特效
查看>>
web端 图片上传
查看>>
17代码分离
查看>>
18Lua与C#交互
查看>>
01:UI框架加强版
查看>>
PureMVC 简单案例
查看>>