您好,登錄后才能下訂單哦!
這篇文章主要介紹Linux虛擬化技術(shù)KVM的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
KVM是一種內(nèi)建于 Linux® 中的開源虛擬化技術(shù)。具體而言,KVM 可幫助您將 Linux 轉(zhuǎn)變?yōu)樘摂M機(jī)監(jiān)控程序,使主機(jī)計(jì)算機(jī)能夠運(yùn)行多個(gè)隔離的虛擬環(huán)境,即虛擬客戶機(jī)或虛擬機(jī)(VM)。
環(huán)境:redhat 7.4 虛擬機(jī)關(guān)機(jī)模式下開啟虛擬化引擎后再開機(jī)
查看
[root@localhost ~]# lscpu | grep vmx
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon nopl xtopology tsc_reliable nonstop_tsc eagerfpu pni pclmulqdq vmx
ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch tpr_shadow vnmi ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 invpcid rdseed adx smap xsaveopt arat [root@localhost ~]#
安裝virt-manager libvirt后,開啟libvirtd
[root@localhost ~]# mount /dev/sr0 /mnt[root@localhost ~]# yum install virt-manager libvirt[root@localhost ~]# systemctl enable libvirtd[root@localhost ~]# systemctl start libvirtd
查看
[root@localhost test]# lsmod | grep kvmkvm_intel 170086 0 kvm 566340 1 kvm_intel irqbypass 13503 1 kvm
上傳鏡像到一個(gè)目錄下,上傳到/root/test
[root@localhost test]# ll總用量 3963904 -rw-r--r--. 1 root root 4059037696 8月 6 09:49 rhel-server-7.4-x86_64-dvd.iso
圖形界面創(chuàng)建虛擬機(jī) 使用virt-manager在圖形界面創(chuàng)建虛擬機(jī)(不能在xshell),安裝系統(tǒng)
[root@mail ~]# virt-manager
選擇文件/新建虛擬機(jī)/本地安裝介質(zhì)(iso)/使用ISO映像/
系統(tǒng)安裝最好安裝命令行界面
如果想打開,使用virt-manager進(jìn)去圖形界面后右鍵打開就ok
2.5命令行界面安裝系統(tǒng)
2.5.1添加橋接網(wǎng)絡(luò)
[root@localhost ~]# nmcli connection add type bridge con-name br1 ifname br11
添加從設(shè)備到橋接網(wǎng)絡(luò)
[root@localhost ~]# nmcli connection add type bridge-slave con-name br1-port1 ifname ens33 master br1[root@localhost ~]# nmcli connection show12
2.5.2安裝必要軟件
[root@localhost ~]# mount /dev/sr0 /mntmount: /dev/sr0 寫保護(hù),將以只讀方式掛載 [root@localhost ~]# yum install virt-install virt-viewer123
2.5.3虛擬機(jī)關(guān)機(jī)后手動(dòng)添加一個(gè)磁盤后開機(jī)
[root@localhost ~]# fdisk /dev/sdb1
N P 回車 回車 W
[root@localhost ~]# partprobe[root@localhost ~]# fdisk -l /dev/sdb12
2.3.6執(zhí)行安裝命令 注意:鏡像名稱、鏡像目錄、磁盤路徑
[root@localhost ~]# virt-install --name rhel-server-7.4-x86_64-dvd.iso --disk path=/dev/sdb1 --check path_
以上是“Linux虛擬化技術(shù)KVM的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。