测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
运维
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
CentOS7系统通过virt-install自动启动虚拟机(全程无交互)
收藏本文
作者:redrose2100 类别: 日期:2022-11-09 07:03:58 阅读:655 次 消耗积分:0 分
[【原文链接】CentOS7系统通过virt-install启动虚拟机](http://devops-dev.com/article/433) (1)在centos7系统下载centos7的操作系统iso文件 ```bash mkdir -p /opt/os cd /opt/os yum install -y wget wget http://mirrors.ustc.edu.cn/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-DVD-2009.iso ``` (2)参照 [CentOS系统利用kickstart自动生成工具通过图形化配置的方式生成ks.cfg文件](http://devops-dev.com/article/432) 生成ks.cfg文件,如下 ```bash #platform=x86, AMD64, 或 Intel EM64T #version=DEVEL # Install OS instead of upgrade install # Keyboard layouts keyboard 'us' # Root password rootpw --iscrypted $1$x7isxN9d$2uzzR6TWc.UyXds2hYxlr0 # System language lang zh_CN # System authorization information auth --useshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use text mode install text # SELinux configuration selinux --disabled # Do not configure the X Window System skipx # Firewall configuration firewall --disabled # Network information network --bootproto=dhcp --device=ens3 # Reboot after installation reboot # System timezone timezone Asia/Shanghai # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr # Partition clearing information clearpart --all --initlabel # Disk partitioning information part /boot --fstype="xfs" --size=1024 part / --fstype="xfs" --grow --size=1 %packages @base %end ``` (3)创建虚拟机的存储卷 创建命令瑞安,其中-f指定卷的格式,卷的名称自定义,比如这里 centos7.qcow2,大小这里设置为30G ```bash qemu-img create -f qcow2 /var/lib/libvirt/images/test.qcow2 30G ``` (4)通过virt-install命令启动虚拟机 ```bash virt-install \ --name test \ --memory=1024 \ --vcpus=1 \ --os-type linux \ --location /opt/os/CentOS-7-x86_64-DVD-2009.iso \ --disk path=/var/lib/libvirt/images/test.qcow2,size=30,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" ``` (5)安装完成后,即进入登录界面,输入用户名密码即可登录 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/8371aa38-5ffc-11ed-b1f3-0242ac110002.png)
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/433
上一篇:
CentOS系统利用kickstart自动生成工具通过图形化配置的方式生成ks.cfg文件
下一篇:
openEuler安装GNOME图形化桌面
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件