KVM : वर्चुअल मशीन बनाएं2023/08/30 |
GuestOS इंस्टॉल करें और वर्चुअल मशीन बनाएं।
यह उदाहरण Ubuntu 22.04 स्थापित करना दिखाता है। |
|
[1] | इस उदाहरण पर, यह पहले एक निर्देशिका पर उबंटू की ISO फ़ाइल डाउनलोड करता है और यह टेक्स्ट मोड पर ISO फ़ाइल से GuestOS स्थापित करता है। एसएसएच इत्यादि के माध्यम से कंसोल या रिमोट कनेक्शन पर काम करना संभव है। इसके अलावा, वर्चुअल मशीन की छवियां डिफ़ॉल्ट रूप से स्टोरेज पूल के रूप में [/var/lib/libvirt/images] पर रखी जाती हैं, हालाँकि, यह उदाहरण एक नया स्टोरेज पूल बनाने और उपयोग करने का तरीका दिखाता है। (अपनी पसंद के किसी भी स्थान का उपयोग करें) |
# एक भंडारण पूल बनाएँ root@dlp:~# mkdir -p /var/kvm/images root@dlp:~# virt-install \ --name ubuntu2204 \ --ram 4096 \ --disk path=/var/kvm/images/ubuntu2204.img,size=20 \ --vcpus 2 \ --os-variant ubuntu22.04 \ --network bridge=br0 \ --graphics none \ --console pty,target_type=serial \ --location /home/ubuntu-22.04-live-server-amd64.iso,kernel=casper/vmlinuz,initrd=casper/initrd \ --extra-args 'console=ttyS0,115200n8' # स्थापना प्रारंभ होती है ================================================================================ Serial [ Help ] ================================================================================ As the installer is running on a serial console, it has started in basic mode, using only the ASCII character set and black and white colours. If you are connecting from a terminal emulator such as gnome-terminal that supports unicode and rich colours you can switch to "rich mode" which uses unicode, colours and supports many languages. You can also connect to the installer over the network via SSH, which will allow use of rich mode. [ Continue in rich mode > ] [ Continue in basic mode > ] [ View SSH instructions ] # [Continue in basic mode] चुनें # उसके बाद, आप सामान्य प्रक्रिया के साथ इंस्टॉलेशन चरणों को आगे बढ़ा सकते हैं |
उपरोक्त विकल्पों के उदाहरण का अर्थ इस प्रकार है। दूसरों के लिए कई विकल्प हैं, पढ़ें [man virt-install]।
|
[2] | इंस्टॉलेशन समाप्त करने के बाद, कंप्यूटर को पुनरारंभ करें और फिर लॉगिन प्रॉम्प्ट निम्नानुसार दिखाया गया है। यह ठीक है यदि इंस्टॉलेशन के दौरान आपके द्वारा सेट किए गए उपयोगकर्ता के साथ सामान्य रूप से लॉग किया गया हो। |
Ubuntu 22.04 LTS localhost ttyS0 localhost login: ubuntu Password: Welcome to Ubuntu 22.04 LTS (GNU/Linux 5.15.0-27-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Wed Apr 27 05:02:15 UTC 2022 System load: 0.724609375 Processes: 132 Usage of /: 26.2% of 9.75GB Users logged in: 0 Memory usage: 5% IPv4 address for enp1s0: 10.0.0.206 Swap usage: 0% 2 updates can be applied immediately. To see these additional updates run: apt list --upgradable The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details. ubuntu@localhost:~$ |
[3] | गेस्टओएस से होस्टओएस में जाने के लिए, Ctrl + ] कुंजी इनपुट करें। होस्टओएस से गेस्टओएस में जाने के लिए, एक कमांड इनपुट करें [virsh console (वर्चुअल मशीन का नाम)]। |
ubuntu@localhost:~$ # Ctrl + ] चाबी root@dlp:~# # मेज़बान का कंसोल root@dlp:~# virsh console ubuntu2204 # अतिथि के कंसोल पर स्विच करें Connected to domain 'ubuntu2204' Escape character is ^] # Enter चाबी ubuntu@localhost:~$ # अतिथि का सांत्वना |
[4] | नीचे दिए गए आदेश से वर्तमान VM से VM की प्रतिलिपि बनाना आसान है। |
root@dlp:~# virt-clone --original ubuntu2204 --name template --file /var/kvm/images/template.img Allocating 'template.img' | 20 GB 00:00:04 Clone 'template' created successfully. # डिस्क छवि root@dlp:~# ll /var/kvm/images/template.img -rw------- 1 root root 3618242560 Apr 27 05:08 /var/kvm/images/template.img # विन्यास फाइल root@dlp:~# ll /etc/libvirt/qemu/template.xml -rw------- 1 root root 6471 Apr 27 05:07 /etc/libvirt/qemu/template.xml |
Sponsored Link |
|