测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
基于x86架构CentOS系统通过qemu模拟器自动安装启动x86架构的openEuler虚拟机
收藏本文
作者:redrose2100 类别: 日期:2022-11-10 17:18:08 阅读:1123 次 消耗积分:0 分
[【原文链接】基于x86架构CentOS系统通过qemu模拟器自动安装启动x86架构的openEuler虚拟机](http://devops-dev.com/article/435) [TOC] # 一、基础准备工作 (1)本文基础环境为CentOS7虚拟机,即在CentOS7虚拟机上继续通过qemu模拟器实现全自动安装并启动openEuler虚拟机 (2)若虚拟机未安装虚拟化工具,则可参考 [CentOS7系统安装KVM并配置网桥](http://devops-dev.com/article/428) 安装配置基础环境 (3)下载openEuler的操作系统镜像 ```bash mkdir -p /opt/os/ cd /opt/os wget https://repo.openeuler.org/openEuler-22.03-LTS/ISO/x86_64/openEuler-22.03-LTS-x86_64-dvd.iso --no-check-certificate ``` # 二、自动创建基于dhcp自动获取ip地址的openEuler虚拟机 (1)创建磁盘,在创建之前如果已经存在则先删除 ```bash rm -rf /var/lib/libvirt/images/test.qcow2 qemu-img create -f qcow2 /var/lib/libvirt/images/test.qcow2 30G ``` (2)创建ks.cfg文件 ```bash rm -rf /opt/openEuler/dhcp/ks.cfg mkdir -p /opt/openEuler/dhcp/ vi /opt/openEuler/dhcp/ks.cfg ``` 然后向ks.cfg文件写入如下内容 ```bash #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use graphical install text # Run the Setup Agent on first boot firstboot --enable ignoredisk --only-use=sda # Keyboard layouts keyboard --vckeymap=cn --xlayouts='cn' # System language lang zh_CN.UTF-8 # Network information network --bootproto=dhcp network --hostname=test # Root password rootpw --iscrypted $6$iqWsh8SEbDTI2rvb$ri6nTjR79jQ9MDrzcKGkEhy6k8TQg2jV3P8JJ4E.WNaIfL1kFSUlIWBtA5bDjCajH213TKUeBQT6SaYbtnKzN/ # System services services --enabled="chronyd" # System timezone timezone Asia/Shanghai --isUtc # System bootloader configuration bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda # Partition clearing information clearpart --none --initlabel # Disk partitioning information part /boot --fstype="xfs" --ondisk=sda --size=1024 part pv.252 --fstype="lvmpv" --ondisk=sda --size=19455 volgroup centos --pesize=4096 pv.252 logvol swap --fstype="swap" --size=2048 --name=swap --vgname=centos logvol / --fstype="xfs" --size=17404 --name=root --vgname=centos %packages @^minimal-environment @standard @core chrony kexec-tools %end reboot %anaconda pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty %end ``` (3)通过virt-install启动虚拟机 ```bash virt-install \ --name test \ --memory=1024 \ --vcpus=1 \ --os-type linux \ --location /opt/os/openEuler-22.03-LTS-x86_64-dvd.iso \ --disk path=/var/lib/libvirt/images/test.qcow2,size=20,format=qcow2 \ --graphics=none \ --console pty,target_type=serial \ --initrd-inject ks.cfg --extra-args "inst.ks=file:/ks.cfg console=tty0 console=ttyS0,115200n8" ``` # 三、自动创建配置静态IP地址的openEuler虚拟机 (1)创建磁盘,在创建之前如果已经存在则先删除 ```bash rm -rf /var/lib/libvirt/images/test.qcow2 qemu-img create -f qcow2 /var/lib/libvirt/images/test.qcow2 30G ``` (2)创建ks.cfg文件 ```bash rm -rf /opt/openEuler/static/ks.cfg mkdir -p /opt/openEuler/static/ vi /opt/openEuler/static/ks.cfg ``` 然后向ks.cfg中写入如下内容 ```bash #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use graphical install text # Run the Setup Agent on first boot firstboot --enable ignoredisk --only-use=sda # Keyboard layouts keyboard --vckeymap=cn --xlayouts='cn' # System language lang zh_CN.UTF-8 # Network information network --bootproto=static --device=ens3 --gateway=192.168.1.1 --ip=192.168.1.100 --nameserver=8.8.8.8 --netmask=255.255.255.0 network --hostname=test # Root password rootpw --iscrypted $6$iqWsh8SEbDTI2rvb$ri6nTjR79jQ9MDrzcKGkEhy6k8TQg2jV3P8JJ4E.WNaIfL1kFSUlIWBtA5bDjCajH213TKUeBQT6SaYbtnKzN/ # System services services --enabled="chronyd" # System timezone timezone Asia/Shanghai --isUtc # System bootloader configuration bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda # Partition clearing information clearpart --none --initlabel # Disk partitioning information part /boot --fstype="xfs" --ondisk=sda --size=1024 part pv.252 --fstype="lvmpv" --ondisk=sda --size=19455 volgroup centos --pesize=4096 pv.252 logvol swap --fstype="swap" --size=2048 --name=swap --vgname=centos logvol / --fstype="xfs" --size=17404 --name=root --vgname=centos %packages @^minimal-environment @standard @core chrony kexec-tools %end reboot %anaconda pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty %end ``` (3)然后通过virt-install命令启动虚拟机 ```bash virt-install \ --name test \ --memory=1024 \ --vcpus=1 \ --os-type linux \ --location /opt/os/openEuler-22.03-LTS-x86_64-dvd.iso \ --disk path=/var/lib/libvirt/images/test.qcow2,size=20,format=qcow2 \ --graphics=none \ --console pty,target_type=serial \ --initrd-inject ks.cfg --extra-args "inst.ks=file:/ks.cfg console=tty0 console=ttyS0,115200n8" ``` (4)比如这里配置了创建的虚拟机的ip地址为192.168.1.100,则虚拟机创建完成后,不需要登录查看ip,直接使用ip进行ping或者ssh均是可以的。
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/435
上一篇:
openEuler安装GNOME图形化桌面
下一篇:
ssh实现免密登录服务器
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件